diff options
| author | Andreas Schwab | 2000-06-19 09:00:18 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2000-06-19 09:00:18 +0000 |
| commit | 6922f2087493b09b57797124f08f6a8ae9679232 (patch) | |
| tree | 52f28fc9c14fdf5688699c6b1d889c51f1c3c491 | |
| parent | ebdb31e4f245a0e589e671f033895aa13f062e5e (diff) | |
| download | emacs-6922f2087493b09b57797124f08f6a8ae9679232.tar.gz emacs-6922f2087493b09b57797124f08f6a8ae9679232.zip | |
(tags-query-replace): Put new parameters
START and END at the end, for backward compatibility.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/etags.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 247d89ba874..e001ecc3935 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-06-19 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * progmodes/etags.el (tags-query-replace): Put new parameters | ||
| 4 | START and END at the end, for backward compatibility. | ||
| 5 | |||
| 1 | 2000-06-19 Kenichi Handa <handa@etl.go.jp> | 6 | 2000-06-19 Kenichi Handa <handa@etl.go.jp> |
| 2 | 7 | ||
| 3 | * international/codepage.el: | 8 | * international/codepage.el: |
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index 154217b6e8e..ecba11bb3e8 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el | |||
| @@ -1628,7 +1628,7 @@ See documentation of variable `tags-file-name'." | |||
| 1628 | (tags-loop-continue (or file-list-form t)))) | 1628 | (tags-loop-continue (or file-list-form t)))) |
| 1629 | 1629 | ||
| 1630 | ;;;###autoload | 1630 | ;;;###autoload |
| 1631 | (defun tags-query-replace (from to &optional delimited start end file-list-form) | 1631 | (defun tags-query-replace (from to &optional delimited file-list-form start end) |
| 1632 | "Query-replace-regexp FROM with TO through all files listed in tags table. | 1632 | "Query-replace-regexp FROM with TO through all files listed in tags table. |
| 1633 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. | 1633 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. |
| 1634 | If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace | 1634 | If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace |