]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix undefined @value reference
authorAndreas Schwab <schwab@linux-m68k.org>
Sat, 28 Jan 2012 19:16:02 +0000 (20:16 +0100)
committerAndreas Schwab <schwab@linux-m68k.org>
Sat, 28 Jan 2012 19:16:02 +0000 (20:16 +0100)
* emacs-lisp-intro.texi (Top): Move setting of COUNT-WORDS outside
of @menu. (Bug#10628)

doc/lispintro/ChangeLog
doc/lispintro/emacs-lisp-intro.texi

index 2a1d018cc26a414272acc4d564099072f6bcb838..66f9d3cace4a63c862dabaa628be4234c1b6c15e 100644 (file)
@@ -1,3 +1,8 @@
+2012-01-28  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * emacs-lisp-intro.texi (Top): Move setting of COUNT-WORDS outside
+       of @menu. (Bug#10628)
+
 2012-01-19  Juanma Barranquero  <lekktu@gmail.com>
 
        * emacs-lisp-intro.texi (count-words-in-defun):
index d70ff9f3b44412960928ad465e0fbb9ef2e7f645..a72fd253bc82725b7596845e99befd1833481227 100644 (file)
@@ -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.