aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispintro/ChangeLog5
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi5
2 files changed, 8 insertions, 2 deletions
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 @@
12012-01-28 Andreas Schwab <schwab@linux-m68k.org>
2
3 * emacs-lisp-intro.texi (Top): Move setting of COUNT-WORDS outside
4 of @menu. (Bug#10628)
5
12012-01-19 Juanma Barranquero <lekktu@gmail.com> 62012-01-19 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * emacs-lisp-intro.texi (count-words-in-defun): 8 * 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.
334@c global@pageno = -11 334@c global@pageno = -11
335@c end iftex 335@c end iftex
336 336
337@set COUNT-WORDS count-words-example
338@c Length of variable name chosen so that things still line up when expanded.
339
337@menu 340@menu
338* Preface:: What to look for. 341* Preface:: What to look for.
339* List Processing:: What is Lisp? 342* List Processing:: What is Lisp?
@@ -702,8 +705,6 @@ Regular Expression Searches
702* fwd-para while:: The forward motion @code{while} loop. 705* fwd-para while:: The forward motion @code{while} loop.
703 706
704Counting: Repetition and Regexps 707Counting: Repetition and Regexps
705@set COUNT-WORDS count-words-example
706@c Length of variable name chosen so that things still line up when expanded.
707 708
708* Why Count Words:: 709* Why Count Words::
709* @value{COUNT-WORDS}:: Use a regexp, but find a problem. 710* @value{COUNT-WORDS}:: Use a regexp, but find a problem.