diff options
author | Jason Rumney <jasonr@gnu.org> | 2007-11-21 22:40:10 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2007-11-21 22:40:10 +0000 |
commit | c2ca78bc31645e04406a57fd5ee52b8e9486b9fd (patch) | |
tree | 5e554937da24b479d0b8d2ac25426f69689e2e10 /lisp/emacs-lisp | |
parent | 64e16c3c22db9f01922a4f3efb936c4265ccec7a (diff) | |
download | emacs-c2ca78bc31645e04406a57fd5ee52b8e9486b9fd.tar.gz emacs-c2ca78bc31645e04406a57fd5ee52b8e9486b9fd.tar.bz2 emacs-c2ca78bc31645e04406a57fd5ee52b8e9486b9fd.zip |
(declare-function): Return nil.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/byte-run.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index b0525cbc7c6..bf91a8d58fc 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el @@ -120,7 +120,7 @@ the end of FILE must be all on the same line. For example: \(declare-function c-end-of-defun \"progmodes/cc-cmds.el\" \(&optional arg))" ;; Does nothing - byte-compile-declare-function does the work. - ) + nil) (defun make-obsolete (obsolete-name current-name &optional when) "Make the byte-compiler warn that OBSOLETE-NAME is obsolete. |