]> git.eshelyaron.com Git - emacs.git/commitdiff
(Regexp Backslash): Fix typo.
authorGlenn Morris <rgm@gnu.org>
Sat, 11 Jul 2009 19:32:00 +0000 (19:32 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 11 Jul 2009 19:32:00 +0000 (19:32 +0000)
doc/lispref/ChangeLog
doc/lispref/searching.texi

index 2e77b14c9413cd26e916a2e0c935bb3b9d69fbb5..fc709b05d146c0fcdd58d614bb59a8a8303eb65f 100644 (file)
@@ -1,3 +1,7 @@
+2009-07-11  Glenn Morris  <rgm@gnu.org>
+
+       * searching.texi (Regexp Backslash): Fix typo.
+
 2009-07-11  Kevin Ryde  <user42@zip.com.au>
 
        * hooks.texi (Standard Hooks): Fix cross-references.
index 146d00cfe16577846f37935c7b5d41c08dbace35..2b89a89c3e9a7f7ec794b0b211f34e0517b53bcc 100644 (file)
@@ -708,7 +708,7 @@ If a particular grouping construct in the regular expression was never
 matched---for instance, if it appears inside of an alternative that
 wasn't used, or inside of a repetition that repeated zero times---then
 the corresponding @samp{\@var{digit}} construct never matches
-anything.  To use an artificial example,, @samp{\(foo\(b*\)\|lose\)\2}
+anything.  To use an artificial example, @samp{\(foo\(b*\)\|lose\)\2}
 cannot match @samp{lose}: the second alternative inside the larger
 group matches it, but then @samp{\2} is undefined and can't match
 anything.  But it can match @samp{foobb}, because the first