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