summaryrefslogtreecommitdiff
path: root/lisp/term
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2015-06-16 20:33:48 -0400
committerGlenn Morris <rgm@gnu.org>2015-06-16 20:33:48 -0400
commitfb77502f695331501fb32e686424c3aec3c7b1a3 (patch)
tree4ba3a8844e53b6ed199bc594527698136673e511 /lisp/term
parentd5152a7eef9dbb8b6953f9efdd44bcdbca2311dd (diff)
Address some check-declare warnings.
* lisp/simple.el (tabulated-list-print): * lisp/progmodes/elisp-mode.el (xref-collect-matches): * lisp/term/ns-win.el (ns-selection-owner-p, ns-selection-exists-p) (ns-get-selection): Update declarations.
Diffstat (limited to 'lisp/term')
-rw-r--r--lisp/term/ns-win.el9
1 files changed, 3 insertions, 6 deletions
diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el
index f603f3e0f6..a21c105fb9 100644
--- a/lisp/term/ns-win.el
+++ b/lisp/term/ns-win.el
@@ -930,12 +930,9 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.")
(declare-function ns-own-selection-internal "nsselect.m" (selection value))
(declare-function ns-disown-selection-internal "nsselect.m" (selection))
-(declare-function ns-selection-owner-p "nsselect.m"
- (&optional selection terminal))
-(declare-function ns-selection-exists-p "nsselect.m"
- (&optional selection terminal))
-(declare-function ns-get-selection "nsselect.m"
- (selection-symbol target-type &optional time-stamp terminal))
+(declare-function ns-selection-owner-p "nsselect.m" (&optional selection))
+(declare-function ns-selection-exists-p "nsselect.m" (&optional selection))
+(declare-function ns-get-selection "nsselect.m" (selection-symbol target-type))
(cl-defmethod gui-backend-set-selection (selection value
&context (window-system (eql ns)))