diff options
| author | Kenichi Handa | 2013-09-08 21:17:12 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2013-09-08 21:17:12 +0900 |
| commit | 3aff2f57cc348b90c0f8b5926027cd0f0f378070 (patch) | |
| tree | ff714b2645779c262a714ed7ae1d97a155d21438 /lisp/replace.el | |
| parent | 0ca754d0d8df545ce4c09d65a337f67213e2f82b (diff) | |
| parent | e8dd0787d9c19e81344552d185e9008031f58723 (diff) | |
| download | emacs-3aff2f57cc348b90c0f8b5926027cd0f0f378070.tar.gz emacs-3aff2f57cc348b90c0f8b5926027cd0f0f378070.zip | |
merge trunk
Diffstat (limited to 'lisp/replace.el')
| -rw-r--r-- | lisp/replace.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index 5e44677b0f8..abb59a674e3 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -490,12 +490,13 @@ If `replace-lax-whitespace' is non-nil, a space or spaces in the string | |||
| 490 | to be replaced will match a sequence of whitespace chars defined by the | 490 | to be replaced will match a sequence of whitespace chars defined by the |
| 491 | regexp in `search-whitespace-regexp'. | 491 | regexp in `search-whitespace-regexp'. |
| 492 | 492 | ||
| 493 | In Transient Mark mode, if the mark is active, operate on the contents | ||
| 494 | of the region. Otherwise, operate from point to the end of the buffer. | ||
| 495 | |||
| 496 | Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace | 493 | Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace |
| 497 | only matches surrounded by word boundaries. | 494 | only matches surrounded by word boundaries. |
| 498 | Fourth and fifth arg START and END specify the region to operate on. | 495 | |
| 496 | Operates on the region between START and END (if both are nil, from point | ||
| 497 | to the end of the buffer). Interactively, if Transient Mark mode is | ||
| 498 | enabled and the mark is active, operates on the contents of the region; | ||
| 499 | otherwise from point to the end of the buffer. | ||
| 499 | 500 | ||
| 500 | Use \\<minibuffer-local-map>\\[next-history-element] \ | 501 | Use \\<minibuffer-local-map>\\[next-history-element] \ |
| 501 | to pull the last incremental search string to the minibuffer | 502 | to pull the last incremental search string to the minibuffer |