# HG changeset patch # User Glenn Morris # Date 1247340720 0 # Node ID 79feb82d15fb8871221203c3c6869f0b0c10136a # Parent b760b8569489f62c1a7b3a92ebff48bcac23ad6f (Regexp Backslash): Fix typo. diff -r b760b8569489 -r 79feb82d15fb doc/lispref/ChangeLog --- a/doc/lispref/ChangeLog Sat Jul 11 16:36:05 2009 +0000 +++ b/doc/lispref/ChangeLog Sat Jul 11 19:32:00 2009 +0000 @@ -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 -r b760b8569489 -r 79feb82d15fb doc/lispref/searching.texi --- a/doc/lispref/searching.texi Sat Jul 11 16:36:05 2009 +0000 +++ b/doc/lispref/searching.texi Sat Jul 11 19:32:00 2009 +0000 @@ -708,7 +708,7 @@ 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