# HG changeset patch # User Glenn Morris # Date 1254362618 0 # Node ID 78728d295b597fb0ea03428fa764bd7e25fe1ae3 # Parent 3d13129b958cc90dfa78ae7849f84dfdd857ec34 (declare-function): Doc fix. diff -r 3d13129b958c -r 78728d295b59 lisp/ChangeLog --- a/lisp/ChangeLog Thu Oct 01 02:02:39 2009 +0000 +++ b/lisp/ChangeLog Thu Oct 01 02:03:38 2009 +0000 @@ -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 -r 3d13129b958c -r 78728d295b59 lisp/subr.el --- a/lisp/subr.el Thu Oct 01 02:02:39 2009 +0000 +++ b/lisp/subr.el Thu Oct 01 02:03:38 2009 +0000 @@ -62,11 +62,7 @@ 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.