]> git.eshelyaron.com Git - emacs.git/commitdiff
(tags-query-replace): Add parameters START
authorGerd Moellmann <gerd@gnu.org>
Tue, 25 Apr 2000 19:17:18 +0000 (19:17 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 25 Apr 2000 19:17:18 +0000 (19:17 +0000)
and END.  Construct a form with additional arguments for
perform-replace.

lisp/progmodes/etags.el

index b8d998e16caadf9283dd636f9c80b8ec86488b6c..0659c8a51062fbc86d949cba63bab02a1e0401b5 100644 (file)
@@ -1618,7 +1618,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)
+(defun tags-query-replace (from to &optional delimited start end file-list-form)
   "Query-replace-regexp FROM with TO through all files listed in tags table.
 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
 If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
@@ -1634,7 +1634,7 @@ See documentation of variable `tags-file-name'."
                                   ;; will see it.
                                   '(goto-char (match-beginning 0))))
        tags-loop-operate (list 'perform-replace
-                               (list 'quote from) (list 'quote to)
+                               (list 'quote from) (list 'quote to) nil nil
                                t t (list 'quote delimited)))
   (tags-loop-continue (or file-list-form t)))
 \f