Variable: tags-loop-scan

tags-loop-scan is a variable defined in etags.el.gz.

This variable is obsolete since 27.1; use fileloop-initialize instead.

Value

(user-error "%s"
	    (substitute-command-keys
	     "No \\[tags-search] or \\[tags-query-replace] in progress"))

Documentation

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.

Probably introduced at or before Emacs version 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/etags.el.gz
(defvar tags-loop-scan
  '(user-error "%s"
	       (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.")