comparison src/search.c @ 39511:3195d967e954

Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Mon, 01 Oct 2001 06:08:20 +0000
parents 65f4f2f7d289
children 5f60884970a8
comparison
equal deleted inserted replaced
39510:65f4f2f7d289 39511:3195d967e954
2191 The optional fifth argument SUBEXP specifies a subexpression;\n\ 2191 The optional fifth argument SUBEXP specifies a subexpression;\n\
2192 it says to replace just that subexpression with NEWTEXT,\n\ 2192 it says to replace just that subexpression with NEWTEXT,\n\
2193 rather than replacing the entire matched text.\n\ 2193 rather than replacing the entire matched text.\n\
2194 This is, in a vague sense, the inverse of using `\\N' in NEWTEXT;\n\ 2194 This is, in a vague sense, the inverse of using `\\N' in NEWTEXT;\n\
2195 `\\N' copies subexp N into NEWTEXT, but using N as SUBEXP puts\n\ 2195 `\\N' copies subexp N into NEWTEXT, but using N as SUBEXP puts\n\
2196 NEWTEXT in place of subexp B.\n\ 2196 NEWTEXT in place of subexp N.\n\
2197 This is useful only after a regular expression search or match,\n\ 2197 This is useful only after a regular expression search or match,\n\
2198 since only regular expressions have distinguished subexpressions.") 2198 since only regular expressions have distinguished subexpressions.")
2199 (newtext, fixedcase, literal, string, subexp) 2199 (newtext, fixedcase, literal, string, subexp)
2200 Lisp_Object newtext, fixedcase, literal, string, subexp; 2200 Lisp_Object newtext, fixedcase, literal, string, subexp;
2201 { 2201 {