diff options
| author | Glenn Morris | 2015-06-16 20:33:48 -0400 |
|---|---|---|
| committer | Glenn Morris | 2015-06-16 20:33:48 -0400 |
| commit | fb77502f695331501fb32e686424c3aec3c7b1a3 (patch) | |
| tree | 4ba3a8844e53b6ed199bc594527698136673e511 | |
| parent | d5152a7eef9dbb8b6953f9efdd44bcdbca2311dd (diff) | |
| download | emacs-fb77502f695331501fb32e686424c3aec3c7b1a3.tar.gz emacs-fb77502f695331501fb32e686424c3aec3c7b1a3.zip | |
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.
| -rw-r--r-- | lisp/progmodes/elisp-mode.el | 2 | ||||
| -rw-r--r-- | lisp/simple.el | 2 | ||||
| -rw-r--r-- | lisp/term/ns-win.el | 9 |
3 files changed, 5 insertions, 8 deletions
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index 11c9b16a3c9..76f32decb17 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el | |||
| @@ -582,7 +582,7 @@ It can be quoted, or be inside a quoted form." | |||
| 582 | 582 | ||
| 583 | (declare-function xref-make-bogus-location "xref" (message)) | 583 | (declare-function xref-make-bogus-location "xref" (message)) |
| 584 | (declare-function xref-make "xref" (description location)) | 584 | (declare-function xref-make "xref" (description location)) |
| 585 | (declare-function xref-collect-matches "xref" (input dir &optional kind)) | 585 | (declare-function xref-collect-matches "xref" (symbol dir)) |
| 586 | (declare-function xref-collect-references "xref" (symbol dir)) | 586 | (declare-function xref-collect-references "xref" (symbol dir)) |
| 587 | 587 | ||
| 588 | (defun elisp-xref-find (action id) | 588 | (defun elisp-xref-find (action id) |
diff --git a/lisp/simple.el b/lisp/simple.el index 46023a575f0..48451aacbd6 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -3521,7 +3521,7 @@ support pty association, if PROGRAM is nil." | |||
| 3521 | (defvar tabulated-list-sort-key) | 3521 | (defvar tabulated-list-sort-key) |
| 3522 | (declare-function tabulated-list-init-header "tabulated-list" ()) | 3522 | (declare-function tabulated-list-init-header "tabulated-list" ()) |
| 3523 | (declare-function tabulated-list-print "tabulated-list" | 3523 | (declare-function tabulated-list-print "tabulated-list" |
| 3524 | (&optional remember-pos)) | 3524 | (&optional remember-pos update)) |
| 3525 | 3525 | ||
| 3526 | (defvar process-menu-query-only nil) | 3526 | (defvar process-menu-query-only nil) |
| 3527 | 3527 | ||
diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el index f603f3e0f6d..a21c105fb98 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.") | |||
| 930 | 930 | ||
| 931 | (declare-function ns-own-selection-internal "nsselect.m" (selection value)) | 931 | (declare-function ns-own-selection-internal "nsselect.m" (selection value)) |
| 932 | (declare-function ns-disown-selection-internal "nsselect.m" (selection)) | 932 | (declare-function ns-disown-selection-internal "nsselect.m" (selection)) |
| 933 | (declare-function ns-selection-owner-p "nsselect.m" | 933 | (declare-function ns-selection-owner-p "nsselect.m" (&optional selection)) |
| 934 | (&optional selection terminal)) | 934 | (declare-function ns-selection-exists-p "nsselect.m" (&optional selection)) |
| 935 | (declare-function ns-selection-exists-p "nsselect.m" | 935 | (declare-function ns-get-selection "nsselect.m" (selection-symbol target-type)) |
| 936 | (&optional selection terminal)) | ||
| 937 | (declare-function ns-get-selection "nsselect.m" | ||
| 938 | (selection-symbol target-type &optional time-stamp terminal)) | ||
| 939 | 936 | ||
| 940 | (cl-defmethod gui-backend-set-selection (selection value | 937 | (cl-defmethod gui-backend-set-selection (selection value |
| 941 | &context (window-system (eql ns))) | 938 | &context (window-system (eql ns))) |