From: Andreas Schwab Date: Sat, 28 Jan 2012 19:16:02 +0000 (+0100) Subject: Fix undefined @value reference X-Git-Tag: emacs-pretest-24.0.93~17 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cb97cd2a0d0d5f72fcfbc2e4669c15ceee9fde3c;p=emacs.git Fix undefined @value reference * emacs-lisp-intro.texi (Top): Move setting of COUNT-WORDS outside of @menu. (Bug#10628) --- diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index 2a1d018cc26..66f9d3cace4 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog @@ -1,3 +1,8 @@ +2012-01-28 Andreas Schwab + + * emacs-lisp-intro.texi (Top): Move setting of COUNT-WORDS outside + of @menu. (Bug#10628) + 2012-01-19 Juanma Barranquero * emacs-lisp-intro.texi (count-words-in-defun): diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index d70ff9f3b44..a72fd253bc8 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -334,6 +334,9 @@ every node in every chapter. @c global@pageno = -11 @c end iftex +@set COUNT-WORDS count-words-example +@c Length of variable name chosen so that things still line up when expanded. + @menu * Preface:: What to look for. * List Processing:: What is Lisp? @@ -702,8 +705,6 @@ Regular Expression Searches * fwd-para while:: The forward motion @code{while} loop. Counting: Repetition and Regexps -@set COUNT-WORDS count-words-example -@c Length of variable name chosen so that things still line up when expanded. * Why Count Words:: * @value{COUNT-WORDS}:: Use a regexp, but find a problem.