aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/emacs-lisp/byte-run.el9
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 @@
12007-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
12007-11-22 Stefan Monnier <monnier@iro.umontreal.ca> 102007-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
114FILE can be either a Lisp file (in which case the \".el\" 114FILE can be either a Lisp file (in which case the \".el\"
115extension is optional), or a C file. FILE should be either 115extension is optional), or a C file. C files are expanded
116absolute, or relative to the location of the file containing the 116relative to the Emacs \"src/\" directory. Lisp files are
117declaration (for a Lisp file), or to the Emacs \"src/\" directory 117searched for using `locate-library', and if that fails they are
118\(for a C file). 118expanded relative to the location of the file containing the
119declaration.
119 120
120Note that for the purposes of `check-declare', this statement 121Note that for the purposes of `check-declare', this statement
121must be the first non-whitespace on a line, and everything up to 122must be the first non-whitespace on a line, and everything up to