aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-11-22 04:17:44 +0000
committerGlenn Morris2007-11-22 04:17:44 +0000
commit3ab75caec0317d22b5ecf301d55467eb8a685f61 (patch)
tree008a464baf6b96f7bf93010069f340b39c6aeffe
parent64831124ba532da702021f629d0a09f982fb0bd0 (diff)
downloademacs-3ab75caec0317d22b5ecf301d55467eb8a685f61.tar.gz
emacs-3ab75caec0317d22b5ecf301d55467eb8a685f61.zip
(declare-function): Doc fix.
-rw-r--r--lisp/emacs-lisp/byte-run.el12
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el
index bf91a8d58fc..2ba708d9c92 100644
--- a/lisp/emacs-lisp/byte-run.el
+++ b/lisp/emacs-lisp/byte-run.el
@@ -108,10 +108,14 @@ The return value of this function is not used."
108Optional ARGLIST is the argument list used by the function. The 108Optional ARGLIST is the argument list used by the function. The
109FILE argument is not used by the byte-compiler, but by the 109FILE argument is not used by the byte-compiler, but by the
110`check-declare' package, which checks that FILE contains a 110`check-declare' package, which checks that FILE contains a
111definition for FN. FILE should be either absolute, or relative 111definition for FN. ARGLIST is used by both the byte-compiler and
112to the location of the file containing the declaration. ARGLIST 112`check-declare' to check for consistency.
113is used by both the byte-compiler and `check-declare' to check 113
114for consistency. 114FILE can be either a Lisp file (in which case the \".el\"
115extension is optional), or a C file. FILE should be either
116absolute, or relative to the location of the file containing the
117declaration (for a Lisp file), or to the Emacs \"src/\" directory
118\(for a C file).
115 119
116Note that for the purposes of `check-declare', this statement 120Note that for the purposes of `check-declare', this statement
117must be the first non-whitespace on a line, and everything up to 121must be the first non-whitespace on a line, and everything up to