1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

(tags-loop-scan): Set default value to an error form.

This commit is contained in:
Roland McGrath 1993-01-21 22:43:16 +00:00
parent 2ae6a918b9
commit 0f6b9c324b

View File

@ -1060,7 +1060,9 @@ if the file was newly read in, the value is the filename."
(defvar tags-loop-operate nil
"Form for `tags-loop-continue' to eval to change one file.")
(defvar tags-loop-scan nil
(defvar tags-loop-scan
'(error (substitute-command-keys
"No \\[tags-search] or \\[tags-query-replace] in progress."))
"Form for `tags-loop-continue' to eval to scan one file.
If it returns non-nil, this file needs processing by evalling
\`tags-loop-operate'. Otherwise, move on to the next file.")