diff options
| author | Bob Rogers | 2010-12-04 19:59:37 -0500 |
|---|---|---|
| committer | Chong Yidong | 2010-12-04 19:59:37 -0500 |
| commit | 5eae900ed6d7a87dc245dacbdb963a78666846ee (patch) | |
| tree | f17f966547cb361e1e8f24a17191668b5e1dc76f | |
| parent | 637c2c4396accc9734673751fe249c4914804477 (diff) | |
| download | emacs-5eae900ed6d7a87dc245dacbdb963a78666846ee.tar.gz emacs-5eae900ed6d7a87dc245dacbdb963a78666846ee.zip | |
* vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc-dir.el | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3f348399aca..747267b674b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-12-05 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> | ||
| 2 | |||
| 3 | * vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501). | ||
| 4 | |||
| 1 | 2010-12-05 Chong Yidong <cyd@stupidchicken.com> | 5 | 2010-12-05 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * comint.el (comint-dynamic-list-input-ring) | 7 | * comint.el (comint-dynamic-list-input-ring) |
diff --git a/lisp/vc-dir.el b/lisp/vc-dir.el index 96eb67085b6..5931cbbff8e 100644 --- a/lisp/vc-dir.el +++ b/lisp/vc-dir.el | |||
| @@ -748,12 +748,11 @@ To continue searching for next match, use command \\[tags-loop-continue]." | |||
| 748 | 748 | ||
| 749 | (defun vc-dir-query-replace-regexp (from to &optional delimited) | 749 | (defun vc-dir-query-replace-regexp (from to &optional delimited) |
| 750 | "Do `query-replace-regexp' of FROM with TO, on all marked files. | 750 | "Do `query-replace-regexp' of FROM with TO, on all marked files. |
| 751 | For marked directories, use the files displayed from those directories. | ||
| 752 | If a directory is marked, then use the files displayed for that directory. | 751 | If a directory is marked, then use the files displayed for that directory. |
| 753 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. | 752 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. |
| 754 | If you exit (\\[keyboard-quit], RET or q), you can resume the query replace | 753 | If you exit (\\[keyboard-quit], RET or q), you can resume the query replace |
| 755 | with the command \\[tags-loop-continue]." | 754 | with the command \\[tags-loop-continue]." |
| 756 | ;; FIXME: this is almost a copy of `dired-do-replace-regexp'. This | 755 | ;; FIXME: this is almost a copy of `dired-do-query-replace-regexp'. This |
| 757 | ;; should probably be made generic and used in both places instead of | 756 | ;; should probably be made generic and used in both places instead of |
| 758 | ;; duplicating it here. | 757 | ;; duplicating it here. |
| 759 | (interactive | 758 | (interactive |