]> git.eshelyaron.com Git - emacs.git/commitdiff
* control.texi (Pattern matching case statement): Fix typo.
authorTed Zlatanov <tzz@lifelogs.com>
Mon, 11 Mar 2013 17:05:30 +0000 (13:05 -0400)
committerTed Zlatanov <tzz@lifelogs.com>
Mon, 11 Mar 2013 17:05:30 +0000 (13:05 -0400)
doc/lispref/ChangeLog
doc/lispref/control.texi

index 3c976d37062b9c1ca4613409936570c42710ad98..6510b56ba3b1ce23bf50474a0833c6c78a7e822f 100644 (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.
index 76a2f46479225e1f0c991ebcf562e0b1ab4fb8b9..9ee01299260d5bcbf2bbfcd4f1424c0d8c479a54 100644 (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.