diff options
author | Eli Zaretskii <eliz@gnu.org> | 2016-05-26 22:48:35 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2016-05-26 22:48:35 +0300 |
commit | 01d70ef7e620c7e8331f41d2a1e17d2c5a000c82 (patch) | |
tree | 8bdf8c87da8576721a693e820914e544f043af5d /lisp/progmodes/js.el | |
parent | 2a2c6ee8d18267c16e3953194c6066d9a22b88a5 (diff) | |
download | emacs-01d70ef7e620c7e8331f41d2a1e17d2c5a000c82.tar.gz |
Avoid byte-compiler warnings due to 'declare-function'
* lisp/w32-fns.el (set-message-beep, w32-get-locale-info)
(w32-get-valid-locale-ids):
* lisp/progmodes/js.el (ido-mode): Specify arglist in
'declare-function' forms, to avoid byte-compiler warnings.
Diffstat (limited to 'lisp/progmodes/js.el')
-rw-r--r-- | lisp/progmodes/js.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el index a35c4a31d06..40f60c9277a 100644 --- a/lisp/progmodes/js.el +++ b/lisp/progmodes/js.el @@ -62,7 +62,7 @@ (defvar moz-repl-name) (defvar ido-cur-list) (defvar electric-layout-rules) -(declare-function ido-mode "ido") +(declare-function ido-mode "ido" (arg)) (declare-function inferior-moz-process "ext:mozrepl" ()) ;;; Constants |