1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

* control.texi (Pattern matching case statement): Fix typo.

This commit is contained in:
Ted Zlatanov 2013-03-11 13:05:30 -04:00
parent ae0d461554
commit b388e7ad07
2 changed files with 5 additions and 1 deletions

View File

@ -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.

View File

@ -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.