(Regexp Backslash): Fix typo.

This commit is contained in:
Glenn Morris 2009-07-11 19:32:00 +00:00
parent 774409a10b
commit 748c30f4a3
2 changed files with 5 additions and 1 deletions

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

View 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