aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorTed Zlatanov2013-03-11 13:05:30 -0400
committerTed Zlatanov2013-03-11 13:05:30 -0400
commitb388e7ad07438a3e3434b63798e3a691982e3bc4 (patch)
tree49b049291fc468a3806524abfc6e206a4aa3cf3f /doc
parentae0d461554a9351a0d897ce0e60b47fc9670431e (diff)
downloademacs-b388e7ad07438a3e3434b63798e3a691982e3bc4.tar.gz
emacs-b388e7ad07438a3e3434b63798e3a691982e3bc4.zip
* control.texi (Pattern matching case statement): Fix typo.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/control.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 3c976d37062..6510b56ba3b 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12013-03-11 Teodor Zlatanov <tzz@lifelogs.com>
2
3 * control.texi (Pattern matching case statement): Fix typo.
4
12013-03-04 Paul Eggert <eggert@cs.ucla.edu> 52013-03-04 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 * elisp.texi, intro.texi: Switch from Latin-1 to UTF-8. 7 * elisp.texi, intro.texi: Switch from Latin-1 to UTF-8.
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi
index 76a2f464792..9ee01299260 100644
--- a/doc/lispref/control.texi
+++ b/doc/lispref/control.texi
@@ -373,7 +373,7 @@ symbol to the value that it matched, so that you can later refer to it, either
373in the @var{body-forms} or also later in the pattern. 373in the @var{body-forms} or also later in the pattern.
374@item _ 374@item _
375This so-called @emph{don't care} pattern matches anything, like the previous 375This so-called @emph{don't care} pattern matches anything, like the previous
376one, but unless symbol patterns it does not bind any variable. 376one, but unlike symbol patterns it does not bind any variable.
377@item (pred @var{pred}) 377@item (pred @var{pred})
378This pattern matches if the function @var{pred} returns non-@code{nil} when 378This pattern matches if the function @var{pred} returns non-@code{nil} when
379called with the object being matched. 379called with the object being matched.