From: Glenn Morris Date: Thu, 1 Oct 2009 02:03:38 +0000 (+0000) Subject: (declare-function): Doc fix. X-Git-Tag: emacs-pretest-23.1.90~1042 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a4d2c321a5c1802abf26c2366568340e51622de6;p=emacs.git (declare-function): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index de0839bd1a2..7c246635258 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2009-10-01 Glenn Morris + + * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration + rather than parsing it as a regexp. This relaxes the layout + requirements and makes errors easier to detect. + (check-declare-verify): Check file is regular. + (check-declare-directory): Doc fix. + * subr.el (declare-function): Doc fix. + 2009-10-01 Juanma Barranquero * cedet/semantic/wisent/javat-wy.el diff --git a/lisp/subr.el b/lisp/subr.el index ac8743e683e..a7d3fcd600c 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -62,11 +62,7 @@ set ARGLIST to `t'. This is necessary because `nil' means an empty argument list, rather than an unspecified one. Note that for the purposes of `check-declare', this statement -must be the first non-whitespace on a line, and everything up to -the end of FILE must be all on the same line. For example: - -\(declare-function c-end-of-defun \"progmodes/cc-cmds.el\" - \(&optional arg)) +must be the first non-whitespace on a line. For more information, see Info node `(elisp)Declaring Functions'." ;; Does nothing - byte-compile-declare-function does the work.