]> git.eshelyaron.com Git - emacs.git/commitdiff
Clean up previous change.
authorRichard M. Stallman <rms@gnu.org>
Wed, 12 Apr 2006 19:32:07 +0000 (19:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 12 Apr 2006 19:32:07 +0000 (19:32 +0000)
man/ChangeLog
man/search.texi

index c99c487ee3c2523bd9a385ba2d6bf79bd14a33cf..5344097dda71ea1aa103fddff24ca23b0cadec38 100644 (file)
@@ -1,3 +1,7 @@
+2006-04-12  Richard Stallman  <rms@gnu.org>
+
+       * search.texi: Clean up previous change.
+
 2006-04-12  Eli Zaretskii  <eliz@gnu.org>
 
        * search.texi (Regexp Backslash, Regexp Replace): Add index
index ab109445091e052df1e60efcb4601009bbb61872..4ea3053dea7c1169d09a70e90557a21be92433c7 100644 (file)
@@ -752,7 +752,8 @@ the numbering of the groups that are meant to be referred to.
 @item \@var{d}
 @cindex back reference, in regexp
 matches the same text that matched the @var{d}th occurrence of a
-@samp{\( @dots{} \)} construct (a.k.a.@: @dfn{back reference}).
+@samp{\( @dots{} \)} construct.  This is called a @dfn{back
+reference}.
 
 After the end of a @samp{\( @dots{} \)} construct, the matcher remembers
 the beginning and end of the text matched by that construct.  Then,
@@ -1009,10 +1010,11 @@ it can refer to all or part of what is matched by the @var{regexp}.
 @samp{\&} in @var{newstring} stands for the entire match being
 replaced.  @samp{\@var{d}} in @var{newstring}, where @var{d} is a
 digit, stands for whatever matched the @var{d}th parenthesized
-grouping in @var{regexp} (a.k.a.@: ``back reference'').  @samp{\#}
-refers to the count of replacements already made in this command, as a
-decimal number.  In the first replacement, @samp{\#} stands for
-@samp{0}; in the second, for @samp{1}; and so on.  For example,
+grouping in @var{regexp}.  (This is called a ``back reference''.)
+@samp{\#} refers to the count of replacements already made in this
+command, as a decimal number.  In the first replacement, @samp{\#}
+stands for @samp{0}; in the second, for @samp{1}; and so on.  For
+example,
 
 @example
 M-x replace-regexp @key{RET} c[ad]+r @key{RET} \&-safe @key{RET}