diff options
| author | Miles Bader | 2001-08-28 09:00:21 +0000 |
|---|---|---|
| committer | Miles Bader | 2001-08-28 09:00:21 +0000 |
| commit | 43744cb9bdab4f67cfe878c9578932523db77a93 (patch) | |
| tree | 33bbb43947bc4844abc272d04acc6e52e3e3f5d0 | |
| parent | eaaa65b0929a85c3c4a39c719476778ab29b7100 (diff) | |
| download | emacs-43744cb9bdab4f67cfe878c9578932523db77a93.tar.gz emacs-43744cb9bdab4f67cfe878c9578932523db77a93.zip | |
(query-replace-regexp-eval): Return args from `interactive' form in
correct order.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/replace.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 20bb5312662..c57cfa1c69c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-08-28 Miles Bader <miles@gnu.org> | ||
| 2 | |||
| 3 | * replace.el (query-replace-regexp-eval): Return args from | ||
| 4 | `interactive' form in correct order. | ||
| 5 | |||
| 1 | 2001-08-28 Eli Zaretskii <eliz@is.elta.co.il> | 6 | 2001-08-28 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 7 | ||
| 3 | * mouse.el (mouse-buffer-menu): If the buffer menu is split by | 8 | * mouse.el (mouse-buffer-menu): If the buffer menu is split by |
diff --git a/lisp/replace.el b/lisp/replace.el index e9bd75b9f88..e0b815adfa1 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -170,7 +170,7 @@ Fourth and fifth arg START and END specify the region to operate on." | |||
| 170 | ;; We make TO a list because replace-match-string-symbols requires one, | 170 | ;; We make TO a list because replace-match-string-symbols requires one, |
| 171 | ;; and the user might enter a single token. | 171 | ;; and the user might enter a single token. |
| 172 | (replace-match-string-symbols to) | 172 | (replace-match-string-symbols to) |
| 173 | (list from (car to) start end current-prefix-arg))) | 173 | (list from (car to) current-prefix-arg start end))) |
| 174 | (perform-replace regexp (cons 'replace-eval-replacement to-expr) | 174 | (perform-replace regexp (cons 'replace-eval-replacement to-expr) |
| 175 | start end t t delimited)) | 175 | start end t t delimited)) |
| 176 | 176 | ||