changeset 103863:79feb82d15fb

(Regexp Backslash): Fix typo.
author Glenn Morris <rgm@gnu.org>
date Sat, 11 Jul 2009 19:32:00 +0000
parents b760b8569489
children cc83b339ea18
files doc/lispref/ChangeLog doc/lispref/searching.texi
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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  <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.
--- 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