aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2013-12-02 09:55:40 -0800
committerPaul Eggert2013-12-02 09:55:40 -0800
commit29bacfa95849ccc7f60e490d5207671412b1f2bd (patch)
tree3509b399d23f961246ddea3fc585638182e6827f
parent21bf394d7d1065a886c486f00c614ca905db1ed5 (diff)
downloademacs-29bacfa95849ccc7f60e490d5207671412b1f2bd.tar.gz
emacs-29bacfa95849ccc7f60e490d5207671412b1f2bd.zip
* emacs-lisp-intro.texi (Counting Words): Don't use ':' in xref
titles, as this isn't supported by Texinfo.
-rw-r--r--doc/lispintro/ChangeLog5
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi6
2 files changed, 8 insertions, 3 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog
index f1900bc9d6d..f9cdeda17b6 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,3 +1,8 @@
12013-12-02 Paul Eggert <eggert@cs.ucla.edu>
2
3 * emacs-lisp-intro.texi (Counting Words): Don't use ':' in xref
4 titles, as this isn't supported by Texinfo.
5
12013-11-30 Glenn Morris <rgm@gnu.org> 62013-11-30 Glenn Morris <rgm@gnu.org>
2 7
3 * Makefile.in (distclean): Remove Makefile. 8 * Makefile.in (distclean): Remove Makefile.
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 84c9d905487..d05cf3ec866 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -13544,7 +13544,7 @@ regexps. @xref{the-the, , @code{the-the} Duplicated Words Function}.
13544@end itemize 13544@end itemize
13545 13545
13546@node Counting Words 13546@node Counting Words
13547@chapter Counting: Repetition and Regexps 13547@chapter Counting via Repetition and Regexps
13548@cindex Repetition for word counting 13548@cindex Repetition for word counting
13549@cindex Regular expressions for word counting 13549@cindex Regular expressions for word counting
13550 13550
@@ -14428,7 +14428,7 @@ exclamation mark, and question mark. Do the same using recursion.
14428 14428
14429Our next project is to count the number of words in a function 14429Our next project is to count the number of words in a function
14430definition. Clearly, this can be done using some variant of 14430definition. Clearly, this can be done using some variant of
14431@code{@value{COUNT-WORDS}}. @xref{Counting Words, , Counting Words: 14431@code{@value{COUNT-WORDS}}. @xref{Counting Words, , Counting via
14432Repetition and Regexps}. If we are just going to count the words in 14432Repetition and Regexps}. If we are just going to count the words in
14433one definition, it is easy enough to mark the definition with the 14433one definition, it is easy enough to mark the definition with the
14434@kbd{C-M-h} (@code{mark-defun}) command, and then call 14434@kbd{C-M-h} (@code{mark-defun}) command, and then call
@@ -15602,7 +15602,7 @@ Let's write a function definition to do these tasks. We will use a
15602directory, checking what needs to be done; and we will use a recursive 15602directory, checking what needs to be done; and we will use a recursive
15603call to repeat the actions on each sub-directory. The recursive 15603call to repeat the actions on each sub-directory. The recursive
15604pattern is `accumulate' 15604pattern is `accumulate'
15605(@pxref{Accumulate, , Recursive Pattern: @emph{accumulate}}), 15605(@pxref{Accumulate}),
15606using @code{append} as the combiner. 15606using @code{append} as the combiner.
15607 15607
15608@ignore 15608@ignore