From: Glenn Morris Date: Thu, 22 Nov 2007 04:17:44 +0000 (+0000) Subject: (declare-function): Doc fix. X-Git-Tag: emacs-pretest-23.0.90~9579 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3ab75caec0317d22b5ecf301d55467eb8a685f61;p=emacs.git (declare-function): Doc fix. --- 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." Optional ARGLIST is the argument list used by the function. The FILE argument is not used by the byte-compiler, but by the `check-declare' package, which checks that FILE contains a -definition for FN. FILE should be either absolute, or relative -to the location of the file containing the declaration. ARGLIST -is used by both the byte-compiler and `check-declare' to check -for consistency. +definition for FN. ARGLIST is used by both the byte-compiler and +`check-declare' to check for consistency. + +FILE can be either a Lisp file (in which case the \".el\" +extension is optional), or a C file. FILE should be either +absolute, or relative to the location of the file containing the +declaration (for a Lisp file), or to the Emacs \"src/\" directory +\(for a C file). Note that for the purposes of `check-declare', this statement must be the first non-whitespace on a line, and everything up to