Variable: fileloop-revert-buffers
fileloop-revert-buffers is a customizable variable defined in
fileloop.el.gz.
Value
silent
Documentation
Whether to revert files during fileloop operation.
This can be one of:
silent means to only do it if revert-without-query is applicable;
t means to offer to do it for all applicable files;
nil means never to do it
Probably introduced at or before Emacs version 27.1.
Aliases
tags-loop-revert-buffers (obsolete since 27.1)
Source Code
;; Defined in /usr/src/emacs/lisp/fileloop.el.gz
(defcustom fileloop-revert-buffers 'silent
"Whether to revert files during fileloop operation.
This can be one of:
`silent' means to only do it if `revert-without-query' is applicable;
t means to offer to do it for all applicable files;
nil means never to do it"
:type '(choice (const silent) (const t) (const nil)))