aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2020-09-26 18:35:00 +0300
committerEli Zaretskii2020-09-26 18:35:00 +0300
commit0dfc6fdc1f15cf234c3efc4152275ed1c8441df5 (patch)
treefd201ecc3fdd48c62b2ddfdae800eb57ccad6ebd
parent767713682c21b2e96abdce11741c065899656f75 (diff)
downloademacs-0dfc6fdc1f15cf234c3efc4152275ed1c8441df5.tar.gz
emacs-0dfc6fdc1f15cf234c3efc4152275ed1c8441df5.zip
Followup to a recent change in menu-bar.el
* lisp/fileloop.el (fileloop--operate-function): Mention in a comment that menu-bar.el relies on the default value.
-rw-r--r--lisp/fileloop.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/fileloop.el b/lisp/fileloop.el
index 833bb0401cb..668b9d4cd16 100644
--- a/lisp/fileloop.el
+++ b/lisp/fileloop.el
@@ -55,6 +55,9 @@
55(defvar fileloop--iterator iter-empty) 55(defvar fileloop--iterator iter-empty)
56(defvar fileloop--scan-function 56(defvar fileloop--scan-function
57 (lambda () (user-error "No operation in progress"))) 57 (lambda () (user-error "No operation in progress")))
58;; If the default value below is changed, the :enable form of
59;; tags-continue and tags-repl-continue in menu-bar.el will have to be
60;; updated accordingly.
58(defvar fileloop--operate-function #'ignore) 61(defvar fileloop--operate-function #'ignore)
59(defvar fileloop--freshly-initialized nil) 62(defvar fileloop--freshly-initialized nil)
60 63