]> git.eshelyaron.com Git - emacs.git/commitdiff
* emacs-lisp-intro.texi (Counting Words): Don't use ':' in xref
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 2 Dec 2013 17:55:40 +0000 (09:55 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 2 Dec 2013 17:55:40 +0000 (09:55 -0800)
titles, as this isn't supported by Texinfo.

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

index f1900bc9d6d86526f8c01964405ea42c55ce6211..f9cdeda17b67641b92c57a1be52a3daf52f9232e 100644 (file)
@@ -1,3 +1,8 @@
+2013-12-02  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * emacs-lisp-intro.texi (Counting Words): Don't use ':' in xref
+       titles, as this isn't supported by Texinfo.
+
 2013-11-30  Glenn Morris  <rgm@gnu.org>
 
        * Makefile.in (distclean): Remove Makefile.
index 84c9d9054878ee28cf451fc3ce2e1be725de4315..d05cf3ec86607b59f535f190e547ecd336f1e7c4 100644 (file)
@@ -13544,7 +13544,7 @@ regexps.  @xref{the-the, , @code{the-the} Duplicated Words Function}.
 @end itemize
 
 @node Counting Words
-@chapter Counting: Repetition and Regexps
+@chapter Counting via Repetition and Regexps
 @cindex Repetition for word counting
 @cindex Regular expressions for word counting
 
@@ -14428,7 +14428,7 @@ exclamation mark, and question mark.  Do the same using recursion.
 
 Our next project is to count the number of words in a function
 definition.  Clearly, this can be done using some variant of
-@code{@value{COUNT-WORDS}}.  @xref{Counting Words, , Counting Words:
+@code{@value{COUNT-WORDS}}.  @xref{Counting Words, , Counting via
 Repetition and Regexps}.  If we are just going to count the words in
 one definition, it is easy enough to mark the definition with the
 @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
 directory, checking what needs to be done; and we will use a recursive
 call to repeat the actions on each sub-directory.  The recursive
 pattern is `accumulate'
-(@pxref{Accumulate, , Recursive Pattern: @emph{accumulate}}),
+(@pxref{Accumulate}),
 using @code{append} as the combiner.
 
 @ignore