diff options
| author | Richard M. Stallman | 2008-01-29 14:49:10 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2008-01-29 14:49:10 +0000 |
| commit | c575e6587e4bea7e181bc8a2b09e57ee0e4a11a1 (patch) | |
| tree | f27d28d31dbdd44ca717a84e9a90ef6303294bcd | |
| parent | 66381027737a926f4309a86b0b1bab24d0dad381 (diff) | |
| download | emacs-c575e6587e4bea7e181bc8a2b09e57ee0e4a11a1.tar.gz emacs-c575e6587e4bea7e181bc8a2b09e57ee0e4a11a1.zip | |
(tags-query-replace): Delete unused optional args. Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/progmodes/etags.el | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4e454acfc8e..591a159d4d6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2008-01-29 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/etags.el (tags-query-replace): Delete unused optional args. | ||
| 4 | Doc fix. | ||
| 5 | |||
| 6 | * files.el (hack-local-variables): Don't query about fake variables. | ||
| 7 | |||
| 1 | 2008-01-27 Nick Roberts <nickrob@snap.net.nz> | 8 | 2008-01-27 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 9 | ||
| 3 | * progmodes/gdb-ui.el (gdb-create-define-alist): Don't call | 10 | * progmodes/gdb-ui.el (gdb-create-define-alist): Don't call |
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index a22853fb404..0a66560f827 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el | |||
| @@ -1815,7 +1815,7 @@ See documentation of variable `tags-file-name'." | |||
| 1815 | (tags-loop-continue (or file-list-form t)))) | 1815 | (tags-loop-continue (or file-list-form t)))) |
| 1816 | 1816 | ||
| 1817 | ;;;###autoload | 1817 | ;;;###autoload |
| 1818 | (defun tags-query-replace (from to &optional delimited file-list-form start end) | 1818 | (defun tags-query-replace (from to &optional delimited file-list-form) |
| 1819 | "Do `query-replace-regexp' of FROM with TO on all files listed in tags table. | 1819 | "Do `query-replace-regexp' of FROM with TO on all files listed in tags table. |
| 1820 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. | 1820 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. |
| 1821 | If you exit (\\[keyboard-quit], RET or q), you can resume the query replace | 1821 | If you exit (\\[keyboard-quit], RET or q), you can resume the query replace |
| @@ -1824,7 +1824,10 @@ Fourth arg FILE-LIST-FORM non-nil means initialize the replacement loop. | |||
| 1824 | Fifth and sixth arguments START and END are accepted, for compatibility | 1824 | Fifth and sixth arguments START and END are accepted, for compatibility |
| 1825 | with `query-replace-regexp', and ignored. | 1825 | with `query-replace-regexp', and ignored. |
| 1826 | 1826 | ||
| 1827 | See also documentation of the variable `tags-file-name'." | 1827 | If FILE-LIST-FORM is non-nil, it is a form to evaluate to |
| 1828 | produce the list of files to search. | ||
| 1829 | |||
| 1830 | See also the documentation of the variable `tags-file-name'." | ||
| 1828 | (interactive (query-replace-read-args "Tags query replace (regexp)" t t)) | 1831 | (interactive (query-replace-read-args "Tags query replace (regexp)" t t)) |
| 1829 | (setq tags-loop-scan `(let ,(unless (equal from (downcase from)) | 1832 | (setq tags-loop-scan `(let ,(unless (equal from (downcase from)) |
| 1830 | '((case-fold-search nil))) | 1833 | '((case-fold-search nil))) |