comparison lisp/progmodes/etags.el @ 29730:8b7b0c7c65db

(tags-query-replace): Put new parameters START and END at the end, for backward compatibility.
author Andreas Schwab <schwab@suse.de>
date Mon, 19 Jun 2000 08:59:19 +0000
parents a4b321043588
children 035ce2227d76
comparison
equal deleted inserted replaced
29729:bf15c290522e 29730:8b7b0c7c65db
1626 (list 're-search-forward (list 'quote regexp) nil t) 1626 (list 're-search-forward (list 'quote regexp) nil t)
1627 tags-loop-operate nil) 1627 tags-loop-operate nil)
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
1635 with the command \\[tags-loop-continue]. 1635 with the command \\[tags-loop-continue].
1636 1636