diff options
| author | Glenn Morris | 2007-11-22 20:26:33 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-11-22 20:26:33 +0000 |
| commit | e3e7216217d8df0261e4e317c7d2e368d78a9377 (patch) | |
| tree | ce5ad1b5b92eee26b3e083f58f3e2612a8692f0b | |
| parent | 7d4184ba6f4495a049b179c948acbd05da4c5040 (diff) | |
| download | emacs-e3e7216217d8df0261e4e317c7d2e368d78a9377.tar.gz emacs-e3e7216217d8df0261e4e317c7d2e368d78a9377.zip | |
(declare-function): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/emacs-lisp/byte-run.el | 9 |
2 files changed, 14 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 452a9847f6c..ae7927296f6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2007-11-22 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/check-declare.el (check-declare-locate): New function. | ||
| 4 | (check-declare-scan): Use check-declare-locate. | ||
| 5 | (check-declare-verify): No longer adjust fnfile, now | ||
| 6 | check-declare-locate does it. | ||
| 7 | |||
| 8 | * emacs-lisp/byte-run.el (declare-function): Doc fix. | ||
| 9 | |||
| 1 | 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca> | 10 | 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 11 | ||
| 3 | * subr.el (posn-col-row): Make the `default-value' use explicit. | 12 | * subr.el (posn-col-row): Make the `default-value' use explicit. |
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index 2ba708d9c92..9a516b9d36e 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el | |||
| @@ -112,10 +112,11 @@ definition for FN. ARGLIST is used by both the byte-compiler and | |||
| 112 | `check-declare' to check for consistency. | 112 | `check-declare' to check for consistency. |
| 113 | 113 | ||
| 114 | FILE can be either a Lisp file (in which case the \".el\" | 114 | FILE can be either a Lisp file (in which case the \".el\" |
| 115 | extension is optional), or a C file. FILE should be either | 115 | extension is optional), or a C file. C files are expanded |
| 116 | absolute, or relative to the location of the file containing the | 116 | relative to the Emacs \"src/\" directory. Lisp files are |
| 117 | declaration (for a Lisp file), or to the Emacs \"src/\" directory | 117 | searched for using `locate-library', and if that fails they are |
| 118 | \(for a C file). | 118 | expanded relative to the location of the file containing the |
| 119 | declaration. | ||
| 119 | 120 | ||
| 120 | Note that for the purposes of `check-declare', this statement | 121 | Note that for the purposes of `check-declare', this statement |
| 121 | must be the first non-whitespace on a line, and everything up to | 122 | must be the first non-whitespace on a line, and everything up to |