diff options
author | Glenn Morris <rgm@gnu.org> | 2014-02-05 21:26:57 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-02-05 21:26:57 -0500 |
commit | 36a672f6b030e89202210aa15013b34f545877dc (patch) | |
tree | c4de9ef8cd56ef9099f0f0755ef253104756bdaa /doc/lispintro/emacs-lisp-intro.texi | |
parent | f8b18150849bb9bee00186cc872bc48378d3364b (diff) | |
download | emacs-36a672f6b030e89202210aa15013b34f545877dc.tar.gz |
Replace some colons in Texinfo index entries
* doc/lispintro/emacs-lisp-intro.texi (Recursive Patterns):
* doc/misc/mh-e.texi, doc/misc/viper.texi:
Do not use colons in index entries.
Fixes: debbugs:16652
Diffstat (limited to 'doc/lispintro/emacs-lisp-intro.texi')
-rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 84452513a76..74ea8e26e63 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -11610,7 +11610,7 @@ and this provides a sense of its primal capabilities. @node Every @unnumberedsubsubsec Recursive Pattern: @emph{every} @cindex Every, type of recursive pattern -@cindex Recursive pattern: every +@cindex Recursive pattern - every In the @code{every} recursive pattern, an action is performed on every element of a list. @@ -11709,7 +11709,7 @@ But when the list has at least one element, @node Accumulate @unnumberedsubsubsec Recursive Pattern: @emph{accumulate} @cindex Accumulate, type of recursive pattern -@cindex Recursive pattern: accumulate +@cindex Recursive pattern - accumulate Another recursive pattern is called the @code{accumulate} pattern. In the @code{accumulate} recursive pattern, an action is performed on @@ -11760,7 +11760,7 @@ accumulate pattern. @node Keep @unnumberedsubsubsec Recursive Pattern: @emph{keep} @cindex Keep, type of recursive pattern -@cindex Recursive pattern: keep +@cindex Recursive pattern - keep A third recursive pattern is called the @code{keep} pattern. In the @code{keep} recursive pattern, each element of a list is tested; |