diff options
author | Glenn Morris <rgm@gnu.org> | 2015-04-30 20:09:02 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2015-04-30 20:09:02 -0400 |
commit | e22f333ddb1af56334146583e3bdbcf85cf189d6 (patch) | |
tree | bf0f4135d633030c978c2a89031736f3e6998831 /lisp/net/net-utils.el | |
parent | ce7ff436ffd6d9ace7e8d89f4cc81c427407cfaf (diff) | |
download | emacs-e22f333ddb1af56334146583e3bdbcf85cf189d6.tar.gz emacs-e22f333ddb1af56334146583e3bdbcf85cf189d6.tar.bz2 emacs-e22f333ddb1af56334146583e3bdbcf85cf189d6.zip |
Silence some compilation warnings
* lisp/emacs-lisp/check-declare.el (compilation-forget-errors):
* lisp/emulation/cua-base.el (delete-active-region):
* lisp/net/net-utils.el (w32-get-console-output-codepage):
* lisp/term/ns-win.el (ns-own-selection-internal)
(ns-disown-selection-internal, ns-selection-owner-p)
(ns-selection-exists-p, ns-get-selection):
Declare for compiler..
Diffstat (limited to 'lisp/net/net-utils.el')
-rw-r--r-- | lisp/net/net-utils.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/net/net-utils.el b/lisp/net/net-utils.el index ebcbc714ffb..eaf1d7e22c4 100644 --- a/lisp/net/net-utils.el +++ b/lisp/net/net-utils.el @@ -326,6 +326,8 @@ This variable is only used if the variable (insert filtered-string) (set-marker (process-mark process) (point)))))) +(declare-function w32-get-console-output-codepage "w32proc.c" ()) + (defun net-utils-run-program (name header program args) "Run a network information program." (let ((buf (get-buffer-create (concat "*" name "*"))) |