diff options
author | Glenn Morris <rgm@gnu.org> | 2015-06-16 20:33:48 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2015-06-16 20:33:48 -0400 |
commit | fb77502f695331501fb32e686424c3aec3c7b1a3 (patch) | |
tree | 4ba3a8844e53b6ed199bc594527698136673e511 /lisp/simple.el | |
parent | d5152a7eef9dbb8b6953f9efdd44bcdbca2311dd (diff) | |
download | emacs-fb77502f695331501fb32e686424c3aec3c7b1a3.tar.gz |
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/simple.el')
-rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." (defvar tabulated-list-sort-key) (declare-function tabulated-list-init-header "tabulated-list" ()) (declare-function tabulated-list-print "tabulated-list" - (&optional remember-pos)) + (&optional remember-pos update)) (defvar process-menu-query-only nil) |