diff options
author | Ted Zlatanov <tzz@lifelogs.com> | 2013-03-11 13:05:30 -0400 |
---|---|---|
committer | Ted Zlatanov <tzz@lifelogs.com> | 2013-03-11 13:05:30 -0400 |
commit | b388e7ad07438a3e3434b63798e3a691982e3bc4 (patch) | |
tree | 49b049291fc468a3806524abfc6e206a4aa3cf3f | |
parent | ae0d461554a9351a0d897ce0e60b47fc9670431e (diff) | |
download | emacs-b388e7ad07438a3e3434b63798e3a691982e3bc4.tar.gz |
* control.texi (Pattern matching case statement): Fix typo.
-rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
-rw-r--r-- | doc/lispref/control.texi | 2 |
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 @@ +2013-03-11 Teodor Zlatanov <tzz@lifelogs.com> + + * control.texi (Pattern matching case statement): Fix typo. + 2013-03-04 Paul Eggert <eggert@cs.ucla.edu> * 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 in the @var{body-forms} or also later in the pattern. @item _ This so-called @emph{don't care} pattern matches anything, like the previous -one, but unless symbol patterns it does not bind any variable. +one, but unlike symbol patterns it does not bind any variable. @item (pred @var{pred}) This pattern matches if the function @var{pred} returns non-@code{nil} when called with the object being matched. |