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/emulation | |
parent | ce7ff436ffd6d9ace7e8d89f4cc81c427407cfaf (diff) | |
download | emacs-e22f333ddb1af56334146583e3bdbcf85cf189d6.tar.gz |
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/emulation')
-rw-r--r-- | lisp/emulation/cua-base.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el index c6d7b5018cd..e91ce80bbe2 100644 --- a/lisp/emulation/cua-base.el +++ b/lisp/emulation/cua-base.el @@ -790,6 +790,8 @@ Repeating prefix key when region is active works as a single prefix key." ;;; Region specific commands +(declare-function delete-active-region "delsel" (&optional killp)) + (defun cua-delete-region () "Delete the active region. Save a copy in register 0 if `cua-delete-copy-to-register-0' is non-nil." |