diff options
Diffstat (limited to 'lisp/replace.el')
| -rw-r--r-- | lisp/replace.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index 34c3d5299e4..163d5821486 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -415,7 +415,7 @@ word boundaries. A negative prefix arg means replace backward. | |||
| 415 | Use \\<minibuffer-local-map>\\[next-history-element] \ | 415 | Use \\<minibuffer-local-map>\\[next-history-element] \ |
| 416 | to pull the last incremental search string to the minibuffer | 416 | to pull the last incremental search string to the minibuffer |
| 417 | that reads FROM-STRING, or invoke replacements from | 417 | that reads FROM-STRING, or invoke replacements from |
| 418 | incremental search with a key sequence like `C-s C-s M-%' | 418 | incremental search with a key sequence like \\`C-s C-s M-%' |
| 419 | to use its current search string as the string to replace. | 419 | to use its current search string as the string to replace. |
| 420 | 420 | ||
| 421 | Matching is independent of case if both `case-fold-search' | 421 | Matching is independent of case if both `case-fold-search' |
| @@ -472,8 +472,8 @@ To customize possible responses, change the bindings in `query-replace-map'." | |||
| 472 | (defun query-replace-regexp (regexp to-string &optional delimited start end backward region-noncontiguous-p) | 472 | (defun query-replace-regexp (regexp to-string &optional delimited start end backward region-noncontiguous-p) |
| 473 | "Replace some things after point matching REGEXP with TO-STRING. | 473 | "Replace some things after point matching REGEXP with TO-STRING. |
| 474 | As each match is found, the user must type a character saying | 474 | As each match is found, the user must type a character saying |
| 475 | what to do with it. Type SPC or `y' to replace the match, | 475 | what to do with it. Type \\`SPC' or \\`y' to replace the match, |
| 476 | DEL or `n' to skip and go to the next match. For more directions, | 476 | \\`DEL' or \\`n' to skip and go to the next match. For more directions, |
| 477 | type \\[help-command] at that time. | 477 | type \\[help-command] at that time. |
| 478 | 478 | ||
| 479 | In Transient Mark mode, if the mark is active, operate on the contents | 479 | In Transient Mark mode, if the mark is active, operate on the contents |
| @@ -481,12 +481,12 @@ of the region. Otherwise, operate from point to the end of the buffer's | |||
| 481 | accessible portion. | 481 | accessible portion. |
| 482 | 482 | ||
| 483 | When invoked interactively, matching a newline with `\\n' will not work; | 483 | When invoked interactively, matching a newline with `\\n' will not work; |
| 484 | use `C-q C-j' instead. To match a tab character (`\\t'), just press `TAB'. | 484 | use \\`C-q C-j' instead. To match a tab character (`\\t'), just press \\`TAB'. |
| 485 | 485 | ||
| 486 | Use \\<minibuffer-local-map>\\[next-history-element] \ | 486 | Use \\<minibuffer-local-map>\\[next-history-element] \ |
| 487 | to pull the last incremental search regexp to the minibuffer | 487 | to pull the last incremental search regexp to the minibuffer |
| 488 | that reads REGEXP, or invoke replacements from | 488 | that reads REGEXP, or invoke replacements from |
| 489 | incremental search with a key sequence like `C-M-s C-M-s C-M-%' | 489 | incremental search with a key sequence like \\`C-M-s C-M-s C-M-%' |
| 490 | to use its current search regexp as the regexp to replace. | 490 | to use its current search regexp as the regexp to replace. |
| 491 | 491 | ||
| 492 | Matching is independent of case if both `case-fold-search' | 492 | Matching is independent of case if both `case-fold-search' |
| @@ -931,7 +931,7 @@ in \":\", followed by optional whitespace), DEFAULT is added to the prompt. | |||
| 931 | The optional argument HISTORY is a symbol to use for the history list. | 931 | The optional argument HISTORY is a symbol to use for the history list. |
| 932 | If nil, use `regexp-history'. | 932 | If nil, use `regexp-history'. |
| 933 | 933 | ||
| 934 | If the user has used the `M-c' command to specify case | 934 | If the user has used the \\`M-c' command to specify case |
| 935 | sensitivity, the returned string will have a text property named | 935 | sensitivity, the returned string will have a text property named |
| 936 | `case-fold' that has a value of either `fold' or | 936 | `case-fold' that has a value of either `fold' or |
| 937 | `inhibit-fold'. (It's up to the caller of `read-regexp' to | 937 | `inhibit-fold'. (It's up to the caller of `read-regexp' to |