Function: tags-loop-continue
tags-loop-continue is an autoloaded, interactive and byte-compiled
function defined in etags.el.gz.
This command is obsolete since 27.1; use fileloop-continue instead.
Signature
(tags-loop-continue &optional FIRST-TIME)
Documentation
Continue last M-x tags-search (tags-search) or M-x tags-query-replace (tags-query-replace) command.
Used noninteractively with non-nil argument to begin such a command (the
argument is passed to next-file, which see).
Probably introduced at or before Emacs version 1.8.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/etags.el.gz
;;;###autoload
(defun tags-loop-continue (&optional first-time)
"Continue last \\[tags-search] or \\[tags-query-replace] command.
Used noninteractively with non-nil argument to begin such a command (the
argument is passed to `next-file', which see)."
;; Two variables control the processing we do on each file: the value of
;; `tags-loop-scan' is a form to be executed on each file to see if it is
;; interesting (it returns non-nil if so) and `tags-loop-operate' is a form to
;; evaluate to operate on an interesting file. If the latter evaluates to
;; nil, we exit; otherwise we scan the next file.
(declare (obsolete fileloop-continue "27.1"))
(interactive)
(when first-time ;; Backward compatibility.
(tags--compat-initialize first-time))
(fileloop-continue))