]> git.eshelyaron.com Git - emacs.git/commitdiff
(tags-query-replace): Delete unused optional args. Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Tue, 29 Jan 2008 14:49:10 +0000 (14:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 29 Jan 2008 14:49:10 +0000 (14:49 +0000)
lisp/ChangeLog
lisp/progmodes/etags.el

index 4e454acfc8e5658d78b66d7786bc2ed7e64a3b78..591a159d4d6208c79638ea2ab93ee0324f9ecbb9 100644 (file)
@@ -1,3 +1,10 @@
+2008-01-29  Richard Stallman  <rms@gnu.org>
+
+       * progmodes/etags.el (tags-query-replace): Delete unused optional args.
+       Doc fix.
+
+       * files.el (hack-local-variables): Don't query about fake variables.
+
 2008-01-27  Nick Roberts  <nickrob@snap.net.nz>
 
        * progmodes/gdb-ui.el (gdb-create-define-alist): Don't call
index a22853fb40427dc27e77e1481eb6508b91eda567..0a66560f82719ac25da05d84ec81d3fff42b5ea8 100644 (file)
@@ -1815,7 +1815,7 @@ See documentation of variable `tags-file-name'."
     (tags-loop-continue (or file-list-form t))))
 
 ;;;###autoload
-(defun tags-query-replace (from to &optional delimited file-list-form start end)
+(defun tags-query-replace (from to &optional delimited file-list-form)
   "Do `query-replace-regexp' of FROM with TO on all files listed in tags table.
 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
 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.
 Fifth and sixth arguments START and END are accepted, for compatibility
 with `query-replace-regexp', and ignored.
 
-See also documentation of the variable `tags-file-name'."
+If FILE-LIST-FORM is non-nil, it is a form to evaluate to
+produce the list of files to search.
+
+See also the documentation of the variable `tags-file-name'."
   (interactive (query-replace-read-args "Tags query replace (regexp)" t t))
   (setq tags-loop-scan `(let ,(unless (equal from (downcase from))
                                '((case-fold-search nil)))