aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/byte-run.el4
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8ceffc0dd6a..49a08c36ddf 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-11-24 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp/byte-run.el (declare-function): Doc fix.
4
12007-11-24 Kenichi Handa <handa@m17n.org> 52007-11-24 Kenichi Handa <handa@m17n.org>
2 6
3 * international/ucs-tables.el (ucs-8859-7-alist): Update the table. 7 * international/ucs-tables.el (ucs-8859-7-alist): Update the table.
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el
index 9a516b9d36e..bc1f4af6a9a 100644
--- a/lisp/emacs-lisp/byte-run.el
+++ b/lisp/emacs-lisp/byte-run.el
@@ -123,7 +123,9 @@ must be the first non-whitespace on a line, and everything up to
123the end of FILE must be all on the same line. For example: 123the end of FILE must be all on the same line. For example:
124 124
125\(declare-function c-end-of-defun \"progmodes/cc-cmds.el\" 125\(declare-function c-end-of-defun \"progmodes/cc-cmds.el\"
126 \(&optional arg))" 126 \(&optional arg))
127
128For more information, see Info node `elisp(Declaring Functions)'."
127 ;; Does nothing - byte-compile-declare-function does the work. 129 ;; Does nothing - byte-compile-declare-function does the work.
128 nil) 130 nil)
129 131