diff options
| author | Glenn Morris | 2007-11-24 03:09:55 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-11-24 03:09:55 +0000 |
| commit | e1b0f17b8d4f79d2d4e9b929180414c50341e2d3 (patch) | |
| tree | 9109e53844de894ecb9413f3d51521b7f64b337e | |
| parent | 5bb0cda3c6abd23fdf1716acf6da2b5d950270c7 (diff) | |
| download | emacs-e1b0f17b8d4f79d2d4e9b929180414c50341e2d3.tar.gz emacs-e1b0f17b8d4f79d2d4e9b929180414c50341e2d3.zip | |
(declare-function): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/byte-run.el | 4 |
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 @@ | |||
| 1 | 2007-11-24 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/byte-run.el (declare-function): Doc fix. | ||
| 4 | |||
| 1 | 2007-11-24 Kenichi Handa <handa@m17n.org> | 5 | 2007-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 | |||
| 123 | the end of FILE must be all on the same line. For example: | 123 | the 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 | |||
| 128 | For 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 | ||