aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Rumney2007-11-21 22:40:10 +0000
committerJason Rumney2007-11-21 22:40:10 +0000
commitc2ca78bc31645e04406a57fd5ee52b8e9486b9fd (patch)
tree5e554937da24b479d0b8d2ac25426f69689e2e10
parent64e16c3c22db9f01922a4f3efb936c4265ccec7a (diff)
downloademacs-c2ca78bc31645e04406a57fd5ee52b8e9486b9fd.tar.gz
emacs-c2ca78bc31645e04406a57fd5ee52b8e9486b9fd.zip
(declare-function): Return nil.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/byte-run.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 234d71a68bc..53522780557 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-11-21 Jason Rumney <jasonr@gnu.org>
2
3 * emacs-lisp/byte-run.el (declare-function): Return nil.
4
12007-11-21 Stefan Monnier <monnier@iro.umontreal.ca> 52007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * progmodes/sh-script.el (sh-mode): Set defun-prompt-regexp. 7 * progmodes/sh-script.el (sh-mode): Set defun-prompt-regexp.
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:
120\(declare-function c-end-of-defun \"progmodes/cc-cmds.el\" 120\(declare-function c-end-of-defun \"progmodes/cc-cmds.el\"
121 \(&optional arg))" 121 \(&optional arg))"
122 ;; Does nothing - byte-compile-declare-function does the work. 122 ;; Does nothing - byte-compile-declare-function does the work.
123 ) 123 nil)
124 124
125(defun make-obsolete (obsolete-name current-name &optional when) 125(defun make-obsolete (obsolete-name current-name &optional when)
126 "Make the byte-compiler warn that OBSOLETE-NAME is obsolete. 126 "Make the byte-compiler warn that OBSOLETE-NAME is obsolete.