Avoid errors in Auto Revert mode
* lisp/autorevert.el (auto-revert-buffers): Cancel auto-revert-timer only if it is non-nil. This avoids errors on first invocation of Auto-Revert mode.
This commit is contained in:
@@ -813,7 +813,8 @@ the timer when no buffers need to be checked."
|
||||
;; Check if we should cancel the timer.
|
||||
(when (and (not global-auto-revert-mode)
|
||||
(null auto-revert-buffer-list))
|
||||
(cancel-timer auto-revert-timer)
|
||||
(if (timerp auto-revert-timer)
|
||||
(cancel-timer auto-revert-timer))
|
||||
(setq auto-revert-timer nil)))))
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user