aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2013-09-12 00:56:51 -0400
committerStefan Monnier <[email protected]>2013-09-12 00:56:51 -0400
commitd3b049e6015c09a2d1ea101e5fb466c6ce9f61e0 (patch)
treeb2350e68e1a83f538a16ff0e82fb966e28e6ed95
parent56834f3b631601f6bfdb681a53fef77c3d777435 (diff)
* lisp/autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
rely on cl-return.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/autorevert.el2
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9fe5686504..61e9c9bf70 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2013-09-12 Stefan Monnier <[email protected]>
+
+ * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
+ rely on cl-return.
+
2013-09-12 Glenn Morris <[email protected]>
* term/ns-win.el (global-map): Remove binding for ispell-next,
@@ -18,8 +23,8 @@
* eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
(bug#15338).
- (eshell-self-insert-command, eshell-send-invisible): Remove
- unused argument.
+ (eshell-self-insert-command, eshell-send-invisible):
+ Remove unused argument.
(eshell-handle-control-codes): Remove unused var `orig'.
Avoid delete-backward-char.
diff --git a/lisp/autorevert.el b/lisp/autorevert.el
index 0e2b6f32cf..65526f07e1 100644
--- a/lisp/autorevert.el
+++ b/lisp/autorevert.el
@@ -548,7 +548,7 @@ will use an up-to-date value of `auto-revert-interval'"
(cl-assert (stringp file))
(when (eq action 'renamed) (cl-assert (stringp file1)))
;; Loop over all buffers, in order to find the intended one.
- (dolist (buffer buffers)
+ (cl-dolist (buffer buffers)
(when (buffer-live-p buffer)
(with-current-buffer buffer
(when (and (stringp buffer-file-name)