From: Glenn Morris Date: Sat, 11 Jul 2009 19:32:00 +0000 (+0000) Subject: (Regexp Backslash): Fix typo. X-Git-Tag: emacs-pretest-23.1.90~2202 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=748c30f4a350c04db86541b3c5b8d6b5ab8d9e11;p=emacs.git (Regexp Backslash): Fix typo. --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 2e77b14c941..fc709b05d14 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,7 @@ +2009-07-11 Glenn Morris + + * searching.texi (Regexp Backslash): Fix typo. + 2009-07-11 Kevin Ryde * hooks.texi (Standard Hooks): Fix cross-references. diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi index 146d00cfe16..2b89a89c3e9 100644 --- a/doc/lispref/searching.texi +++ b/doc/lispref/searching.texi @@ -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