* doc/lispref/searching.texi (Replacing Match): Document \? in replace-match.
This commit is contained in:
parent
fdaf534a7b
commit
8a3afaf9ea
3 changed files with 21 additions and 9 deletions
|
@ -7,6 +7,8 @@
|
|||
|
||||
2012-11-07 Chong Yidong <cyd@gnu.org>
|
||||
|
||||
* searching.texi (Replacing Match): Document \? in replace-match.
|
||||
|
||||
* variables.texi (Creating Buffer-Local): Document setq-local and
|
||||
defvar-local.
|
||||
(Setting Generalized Variables): Arrange table alphabetically.
|
||||
|
|
|
@ -1310,22 +1310,31 @@ part of one of the following sequences:
|
|||
@table @asis
|
||||
@item @samp{\&}
|
||||
@cindex @samp{&} in replacement
|
||||
@samp{\&} stands for the entire text being replaced.
|
||||
This stands for the entire text being replaced.
|
||||
|
||||
@item @samp{\@var{n}}
|
||||
@item @samp{\@var{n}}, where @var{n} is a digit
|
||||
@cindex @samp{\@var{n}} in replacement
|
||||
@samp{\@var{n}}, where @var{n} is a digit, stands for the text that
|
||||
matched the @var{n}th subexpression in the original regexp.
|
||||
Subexpressions are those expressions grouped inside @samp{\(@dots{}\)}.
|
||||
If the @var{n}th subexpression never matched, an empty string is substituted.
|
||||
This stands for the text that matched the @var{n}th subexpression in
|
||||
the original regexp. Subexpressions are those expressions grouped
|
||||
inside @samp{\(@dots{}\)}. If the @var{n}th subexpression never
|
||||
matched, an empty string is substituted.
|
||||
|
||||
@item @samp{\\}
|
||||
@cindex @samp{\} in replacement
|
||||
@samp{\\} stands for a single @samp{\} in the replacement text.
|
||||
This stands for a single @samp{\} in the replacement text.
|
||||
|
||||
@item @samp{\?}
|
||||
This stands for itself (for compatibility with @code{replace-regexp}
|
||||
and related commands; @pxref{Regexp Replacement,,, emacs, The GNU
|
||||
Emacs Manual}).
|
||||
@end table
|
||||
|
||||
These substitutions occur after case conversion, if any,
|
||||
so the strings they substitute are never case-converted.
|
||||
@noindent
|
||||
Any other character following @samp{\} signals an error.
|
||||
|
||||
The substitutions performed by @samp{\&} and @samp{\@var{n}} occur
|
||||
after case conversion, if any. Therefore, the strings they substitute
|
||||
are never case-converted.
|
||||
|
||||
If @var{subexp} is non-@code{nil}, that says to replace just
|
||||
subexpression number @var{subexp} of the regexp that was matched, not
|
||||
|
|
1
etc/NEWS
1
etc/NEWS
|
@ -699,6 +699,7 @@ sequence in later calls.
|
|||
font name as a string. Whether it returns a font spec or a font name
|
||||
depends on the graphical library.
|
||||
|
||||
+++
|
||||
** If the NEWTEXT arg to `replace-match' contains a substring "\?",
|
||||
that substring is inserted literally even if the LITERAL arg is
|
||||
non-nil, instead of causing an error to be signaled.
|
||||
|
|
Loading…
Add table
Reference in a new issue