Merge from emacs-23
[bpt/emacs.git] / lisp / autorevert.el
CommitLineData
e8af40ee 1;;; autorevert.el --- revert buffers when files on disk change
4a35aff3 2
0d30b337 3;; Copyright (C) 1997, 1998, 1999, 2001, 2002, 2003, 2004,
5df4f04c 4;; 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4a35aff3 5
a468671a 6;; Author: Anders Lindgren <andersl@andersl.com>
f5f727f8 7;; Keywords: convenience
a468671a
GM
8;; Created: 1997-06-01
9;; Date: 1999-11-30
4a35aff3
RS
10
11;; This file is part of GNU Emacs.
12
eb3fa2cf 13;; GNU Emacs is free software: you can redistribute it and/or modify
4a35aff3 14;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
4a35aff3
RS
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
eb3fa2cf 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
4a35aff3
RS
25
26;;; Commentary:
27
28;; Introduction:
29;;
30;; Whenever a file that Emacs is editing has been changed by another
48764ae2 31;; program the user normally has to execute the command `revert-buffer'
4a35aff3
RS
32;; to load the new content of the file into Emacs.
33;;
34;; This package contains two minor modes: Global Auto-Revert Mode and
48764ae2 35;; Auto-Revert Mode. Both modes automatically revert buffers
2d677766
LT
36;; whenever the corresponding files have been changed on disk and the
37;; buffer contains no unsaved changes.
4a35aff3 38;;
ae229809
LT
39;; Auto-Revert Mode can be activated for individual buffers. Global
40;; Auto-Revert Mode applies to all file buffers. (If the user option
41;; `global-auto-revert-non-file-buffers' is non-nil, it also applies
42;; to some non-file buffers. This option is disabled by default.)
43;; Since checking a remote file is too slow, these modes do not check
44;; or revert remote files.
4a35aff3 45;;
48764ae2
DL
46;; Both modes operate by checking the time stamp of all files at
47;; intervals of `auto-revert-interval'. The default is every five
48;; seconds. The check is aborted whenever the user actually uses
49;; Emacs. You should never even notice that this package is active
50;; (except that your buffers will be reverted, of course).
1f41bcba
LT
51;;
52;; After reverting a file buffer, Auto Revert Mode normally puts point
53;; at the same position that a regular manual revert would. However,
54;; there is one exception to this rule. If point is at the end of the
55;; buffer before reverting, it stays at the end. Similarly if point
56;; is displayed at the end of a file buffer in any window, it will stay
57;; at the end of the buffer in that window, even if the window is not
58;; selected. This way, you can use Auto Revert Mode to `tail' a file.
59;; Just put point at the end of the buffer and it will stay there.
60;; These rules apply to file buffers. For non-file buffers, the
61;; behavior may be mode dependent.
2d677766
LT
62;;
63;; While you can use Auto Revert Mode to tail a file, this package
64;; contains a third minor mode, Auto Revert Tail Mode, which does so
65;; more efficiently, as long as you are sure that the file will only
66;; change by growing at the end. It only appends the new output,
67;; instead of reverting the entire buffer. It does so even if the
68;; buffer contains unsaved changes. (Because they will not be lost.)
3eedbc85 69;; Auto Revert Tail Mode works also for remote files.
4a35aff3
RS
70
71;; Usage:
72;;
dddc748b 73;; Go to the appropriate buffer and press either of:
4a35aff3 74;; M-x auto-revert-mode RET
dddc748b 75;; M-x auto-revert-tail-mode RET
4a35aff3
RS
76;;
77;; To activate Global Auto-Revert Mode, press:
78;; M-x global-auto-revert-mode RET
79;;
48764ae2
DL
80;; To activate Global Auto-Revert Mode every time Emacs is started
81;; customise the option `global-auto-revert-mode' or the following
82;; line could be added to your ~/.emacs:
4a35aff3
RS
83;; (global-auto-revert-mode 1)
84;;
85;; The function `turn-on-auto-revert-mode' could be added to any major
86;; mode hook to activate Auto-Revert Mode for all buffers in that
87;; mode. For example, the following line will activate Auto-Revert
88;; Mode in all C mode buffers:
89;;
90;; (add-hook 'c-mode-hook 'turn-on-auto-revert-mode)
91
92;;; Code:
93
94;; Dependencies:
95
96(require 'timer)
0f98bc23 97
71c8db4c 98(eval-when-compile (require 'cl))
4a35aff3
RS
99
100
101;; Custom Group:
102;;
103;; The two modes will be placed next to Auto Save Mode under the
104;; Files group under Emacs.
105
106(defgroup auto-revert nil
48764ae2 107 "Revert individual buffers when files on disk change.
4a35aff3
RS
108
109Auto-Revert Mode can be activated for individual buffer.
110Global Auto-Revert Mode applies to all buffers."
f5f727f8
DN
111 :group 'files
112 :group 'convenience)
4a35aff3
RS
113
114
115;; Variables:
116
dddc748b
DP
117;;; What's this?: ;; Autoload for the benefit of `make-mode-line-mouse-sensitive'.
118;;; What's this?: ;;;###autoload
4a35aff3
RS
119(defvar auto-revert-mode nil
120 "*Non-nil when Auto-Revert Mode is active.
0e4f9468
SM
121Never set this variable directly, use the command `auto-revert-mode' instead.")
122(put 'auto-revert-mode 'permanent-local t)
4a35aff3 123
dddc748b
DP
124(defvar auto-revert-tail-mode nil
125 "*Non-nil when Auto-Revert Tail Mode is active.
9e559f9b
LT
126Never set this variable directly, use the command
127`auto-revert-tail-mode' instead.")
dddc748b
DP
128(put 'auto-revert-tail-mode 'permanent-local t)
129
a2ac68f1
LT
130(defvar auto-revert-timer nil
131 "Timer used by Auto-Revert Mode.")
132
4a35aff3 133(defcustom auto-revert-interval 5
ad660075 134 "Time, in seconds, between Auto-Revert Mode file checks.
a2ac68f1
LT
135The value may be an integer or floating point number.
136
137If a timer is already active, there are two ways to make sure
138that the new value will take effect immediately. You can set
139this variable through Custom or you can call the command
140`auto-revert-set-timer' after setting the variable. Otherwise,
141the new value will take effect the first time Auto Revert Mode
142calls `auto-revert-set-timer' for internal reasons or in your
143next editing session."
4a35aff3 144 :group 'auto-revert
a2ac68f1
LT
145 :type 'number
146 :set (lambda (variable value)
147 (set-default variable value)
148 (and (boundp 'auto-revert-timer)
149 auto-revert-timer
150 (auto-revert-set-timer))))
4a35aff3
RS
151
152(defcustom auto-revert-stop-on-user-input t
6547d313 153 "When non-nil, user input temporarily interrupts Auto-Revert Mode.
6dbbc01d 154With this setting, Auto-Revert Mode checks for user input after
5433e578
LT
155handling each buffer and does not process any further buffers
156\(until the next run of the timer) if user input is available.
157When nil, Auto-Revert Mode checks files and reverts buffers,
158with quitting disabled, without paying attention to user input.
8a593054 159Thus, with this setting, Emacs might be non-responsive at times."
4a35aff3
RS
160 :group 'auto-revert
161 :type 'boolean)
162
163(defcustom auto-revert-verbose t
6547d313 164 "When nil, Auto-Revert Mode does not generate any messages.
0e5dcfd7 165When non-nil, a message is generated whenever a file is reverted."
4a35aff3
RS
166 :group 'auto-revert
167 :type 'boolean)
168
169(defcustom auto-revert-mode-text " ARev"
170 "String to display in the mode line when Auto-Revert Mode is active.
171
172\(When the string is not empty, make sure that it has a leading space.)"
173 :tag "Auto Revert Mode Text" ; To separate it from `global-...'
174 :group 'auto-revert
175 :type 'string)
176
dddc748b
DP
177(defcustom auto-revert-tail-mode-text " Tail"
178 "String to display in the mode line when Auto-Revert Tail Mode is active.
179
180\(When the string is not empty, make sure that it has a leading space.)"
181 :group 'auto-revert
0a306700 182 :type 'string
bf247b6e 183 :version "22.1")
dddc748b 184
4a35aff3
RS
185(defcustom auto-revert-mode-hook nil
186 "Functions to run when Auto-Revert Mode is activated."
187 :tag "Auto Revert Mode Hook" ; To separate it from `global-...'
188 :group 'auto-revert
189 :type 'hook)
190
191(defcustom global-auto-revert-mode-text ""
192 "String to display when Global Auto-Revert Mode is active.
193
194The default is nothing since when this mode is active this text doesn't
48764ae2 195vary over time, or between buffers. Hence mode line text
4a35aff3
RS
196would only waste precious space."
197 :group 'auto-revert
198 :type 'string)
199
200(defcustom global-auto-revert-mode-hook nil
201 "Hook called when Global Auto-Revert Mode is activated."
202 :group 'auto-revert
203 :type 'hook)
204
205(defcustom global-auto-revert-non-file-buffers nil
d9e4328d 206 "When nil, Global Auto-Revert mode operates only on file-visiting buffers.
4a35aff3
RS
207
208When non-nil, both file buffers and buffers with a custom
0e5dcfd7 209`revert-buffer-function' and a `buffer-stale-function' are
9ae0d84f 210reverted by Global Auto-Revert mode. These include the Buffer
fc2f6a26
GM
211List buffer displayed by `buffer-menu', and Dired buffers showing
212complete local directories. The Buffer List buffer reverts every
213`auto-revert-interval' seconds; Dired buffers when the file list of
214the main directory changes. Dired buffers do not auto-revert as
215a result of changes in subdirectories, or in the contents, size,
216modes, etc., of files. You may still sometimes want to revert
217them manually.
0e4f9468 218
d9e4328d 219Use this option with care since it could lead to excessive auto-reverts.
415053a1 220For more information, see Info node `(emacs)Autorevert'."
4a35aff3 221 :group 'auto-revert
843c51ae 222 :type 'boolean
415053a1 223 :link '(info-link "(emacs)Autorevert"))
4a35aff3 224
dddc748b 225(defcustom global-auto-revert-ignore-modes ()
4a35aff3
RS
226 "List of major modes Global Auto-Revert Mode should not check."
227 :group 'auto-revert
228 :type '(repeat sexp))
229
230(defcustom auto-revert-load-hook nil
231 "Functions to run when Auto-Revert Mode is first loaded."
232 :tag "Load Hook"
233 :group 'auto-revert
234 :type 'hook)
235
71c8db4c
LT
236(defcustom auto-revert-check-vc-info nil
237 "If non-nil Auto Revert Mode reliably updates version control info.
238Auto Revert Mode updates version control info whenever the buffer
239needs reverting, regardless of the value of this variable.
240However, the version control state can change without changes to
241the work file. If the change is made from the current Emacs
242session, all info is updated. But if, for instance, a new
243version is checked in from outside the current Emacs session, the
244version control number in the mode line, as well as other version
245control related information, may not be properly updated. If you
246are worried about this, set this variable to a non-nil value.
247
248This currently works by automatically updating the version
249control info every `auto-revert-interval' seconds. Nevertheless,
250it should not cause excessive CPU usage on a reasonably fast
251machine, if it does not apply to too many version controlled
f9478d4d 252buffers. CPU usage depends on the version control system."
71c8db4c
LT
253 :group 'auto-revert
254 :type 'boolean
bf247b6e 255 :version "22.1")
71c8db4c 256
4a35aff3 257(defvar global-auto-revert-ignore-buffer nil
f1e3ff80 258 "*When non-nil, Global Auto-Revert Mode will not revert this buffer.
4a35aff3 259
48764ae2 260This variable becomes buffer local when set in any fashion.")
4a35aff3
RS
261(make-variable-buffer-local 'global-auto-revert-ignore-buffer)
262
4a35aff3
RS
263;; Internal variables:
264
dddc748b 265(defvar auto-revert-buffer-list ()
4a35aff3
RS
266 "List of buffers in Auto-Revert Mode.
267
268Note that only Auto-Revert Mode, never Global Auto-Revert Mode, adds
269buffers to this list.
270
271The timer function `auto-revert-buffers' is responsible for purging
272the list of old buffers.")
273
dddc748b 274(defvar auto-revert-remaining-buffers ()
4a35aff3
RS
275 "Buffers not checked when user input stopped execution.")
276
dddc748b
DP
277(defvar auto-revert-tail-pos 0
278 "Position of last known end of file.")
279
280(add-hook 'find-file-hook
0917bb33
GM
281 (lambda ()
282 (set (make-local-variable 'auto-revert-tail-pos)
283 (nth 7 (file-attributes buffer-file-name)))))
4a35aff3
RS
284
285;; Functions:
286
287;;;###autoload
0e4f9468 288(define-minor-mode auto-revert-mode
48764ae2 289 "Toggle reverting buffer when file on disk changes.
4a35aff3 290
48764ae2
DL
291With arg, turn Auto Revert mode on if and only if arg is positive.
292This is a minor mode that affects only the current buffer.
dddc748b
DP
293Use `global-auto-revert-mode' to automatically revert all buffers.
294Use `auto-revert-tail-mode' if you know that the file will only grow
295without being changed in the part that is already in the buffer."
834b5c1e 296 :group 'auto-revert :lighter auto-revert-mode-text
4a35aff3
RS
297 (if auto-revert-mode
298 (if (not (memq (current-buffer) auto-revert-buffer-list))
299 (push (current-buffer) auto-revert-buffer-list))
300 (setq auto-revert-buffer-list
301 (delq (current-buffer) auto-revert-buffer-list)))
302 (auto-revert-set-timer)
303 (when auto-revert-mode
dddc748b
DP
304 (auto-revert-buffers)
305 (setq auto-revert-tail-mode nil)))
4a35aff3
RS
306
307
308;;;###autoload
309(defun turn-on-auto-revert-mode ()
310 "Turn on Auto-Revert Mode.
311
312This function is designed to be added to hooks, for example:
313 (add-hook 'c-mode-hook 'turn-on-auto-revert-mode)"
314 (auto-revert-mode 1))
315
316
dddc748b
DP
317;;;###autoload
318(define-minor-mode auto-revert-tail-mode
319 "Toggle reverting tail of buffer when file on disk grows.
4837b516 320With arg, turn Tail mode on if arg is positive, otherwise turn it off.
dddc748b
DP
321
322When Tail mode is enabled, the tail of the file is constantly
323followed, as with the shell command `tail -f'. This means that
324whenever the file grows on disk (presumably because some
325background process is appending to it from time to time), this is
326reflected in the current buffer.
327
328You can edit the buffer and turn this mode off and on again as
329you please. But make sure the background process has stopped
330writing before you save the file!
331
332Use `auto-revert-mode' for changes other than appends!"
333 :group 'find-file :lighter auto-revert-tail-mode-text
334 (when auto-revert-tail-mode
335 (unless buffer-file-name
336 (auto-revert-tail-mode 0)
337 (error "This buffer is not visiting a file"))
338 (if (and (buffer-modified-p)
0917bb33 339 (zerop auto-revert-tail-pos) ; library was loaded only after finding file
dddc748b
DP
340 (not (y-or-n-p "Buffer is modified, so tail offset may be wrong. Proceed? ")))
341 (auto-revert-tail-mode 0)
0917bb33
GM
342 ;; a-r-tail-pos stores the size of the file at the time of the
343 ;; last revert. After this package loads, it adds a
344 ;; find-file-hook to set this variable every time a file is
345 ;; loaded. If the package is loaded only _after_ visiting the
346 ;; file to be reverted, then we have no idea what the value of
347 ;; a-r-tail-pos should have been when the file was visited. If
348 ;; the file has changed on disk in the meantime, all we can do
349 ;; is offer to revert the whole thing. If you choose not to
350 ;; revert, then you might miss some output then happened
351 ;; between visiting the file and activating a-r-t-mode.
352 (and (zerop auto-revert-tail-pos)
353 (not (verify-visited-file-modtime (current-buffer)))
354 (y-or-n-p "File changed on disk, content may be missing. \
355Perform a full revert? ")
356 ;; Use this (not just revert-buffer) for point-preservation.
357 (auto-revert-handler))
dddc748b
DP
358 ;; else we might reappend our own end when we save
359 (add-hook 'before-save-hook (lambda () (auto-revert-tail-mode 0)) nil t)
360 (or (local-variable-p 'auto-revert-tail-pos) ; don't lose prior position
f373470d 361 (set (make-local-variable 'auto-revert-tail-pos)
ced3c1e2 362 (nth 7 (file-attributes buffer-file-name))))
dddc748b
DP
363 ;; let auto-revert-mode set up the mechanism for us if it isn't already
364 (or auto-revert-mode
365 (let ((auto-revert-tail-mode t))
366 (auto-revert-mode 1)))
367 (setq auto-revert-mode nil))))
368
369
370;;;###autoload
371(defun turn-on-auto-revert-tail-mode ()
372 "Turn on Auto-Revert Tail Mode.
373
374This function is designed to be added to hooks, for example:
375 (add-hook 'my-logfile-mode-hook 'turn-on-auto-revert-tail-mode)"
376 (auto-revert-tail-mode 1))
377
378
4a35aff3 379;;;###autoload
0e4f9468 380(define-minor-mode global-auto-revert-mode
fc2f6a26
GM
381 "Toggle Global Auto Revert mode.
382With optional prefix argument ARG, enable Global Auto Revert Mode
383if ARG > 0, else disable it.
384
385This is a global minor mode that reverts any buffer associated
386with a file when the file changes on disk. Use `auto-revert-mode'
387to revert a particular buffer.
388
389If `global-auto-revert-non-file-buffers' is non-nil, this mode
390may also revert some non-file buffers, as described in the
391documentation of that variable. It ignores buffers with modes
392matching `global-auto-revert-ignore-modes', and buffers with a
393non-nil vale of `global-auto-revert-ignore-buffer'.
394
395This function calls the hook `global-auto-revert-mode-hook'.
396It displays the text that `global-auto-revert-mode-text'
397specifies in the mode line."
0e4f9468 398 :global t :group 'auto-revert :lighter global-auto-revert-mode-text
4a35aff3
RS
399 (auto-revert-set-timer)
400 (when global-auto-revert-mode
0e4f9468 401 (auto-revert-buffers)))
4a35aff3
RS
402
403
404(defun auto-revert-set-timer ()
0e5dcfd7 405 "Restart or cancel the timer used by Auto-Revert Mode.
d97c8375 406If such a timer is active, cancel it. Start a new timer if
0e5dcfd7
LT
407Global Auto-Revert Mode is active or if Auto-Revert Mode is active
408in some buffer. Restarting the timer ensures that Auto-Revert Mode
409will use an up-to-date value of `auto-revert-interval'"
a2ac68f1 410 (interactive)
4a35aff3
RS
411 (if (timerp auto-revert-timer)
412 (cancel-timer auto-revert-timer))
0e4f9468
SM
413 (setq auto-revert-timer
414 (if (or global-auto-revert-mode auto-revert-buffer-list)
415 (run-with-timer auto-revert-interval
416 auto-revert-interval
dddc748b 417 'auto-revert-buffers))))
4a35aff3 418
ed35db71
EZ
419(defun auto-revert-active-p ()
420 "Check if auto-revert is active (in current buffer or globally)."
421 (or auto-revert-mode
dddc748b 422 auto-revert-tail-mode
ed35db71
EZ
423 (and
424 global-auto-revert-mode
425 (not global-auto-revert-ignore-buffer)
426 (not (memq major-mode
427 global-auto-revert-ignore-modes)))))
428
ed35db71 429(defun auto-revert-handler ()
0e5dcfd7
LT
430 "Revert current buffer, if appropriate.
431This is an internal function used by Auto-Revert Mode."
dddc748b 432 (when (or auto-revert-tail-mode (not (buffer-modified-p)))
fdc31e1d 433 (let* ((buffer (current-buffer)) size
dddc748b
DP
434 (revert
435 (or (and buffer-file-name
dddc748b 436 (file-readable-p buffer-file-name)
fdc31e1d 437 (if auto-revert-tail-mode
3eedbc85
MA
438 ;; Tramp caches the file attributes. Setting
439 ;; `tramp-cache-inhibit' forces Tramp to
440 ;; reread the values.
441 (let ((tramp-cache-inhibit-cache t))
442 (/= auto-revert-tail-pos
443 (setq size
444 (nth 7 (file-attributes
445 buffer-file-name)))))
446 (and (not (file-remote-p buffer-file-name))
447 (not (verify-visited-file-modtime buffer)))))
2d677766 448 (and (or auto-revert-mode
dddc748b
DP
449 global-auto-revert-non-file-buffers)
450 revert-buffer-function
451 (boundp 'buffer-stale-function)
452 (functionp buffer-stale-function)
453 (funcall buffer-stale-function t))))
454 eob eoblist)
d4411cef 455 (when revert
71c8db4c
LT
456 (when (and auto-revert-verbose
457 (not (eq revert 'fast)))
633e0363 458 (message "Reverting buffer `%s'." (buffer-name)))
1f41bcba
LT
459 ;; If point (or a window point) is at the end of the buffer,
460 ;; we want to keep it at the end after reverting. This allows
461 ;; to tail a file.
462 (when buffer-file-name
463 (setq eob (eobp))
464 (walk-windows
465 #'(lambda (window)
466 (and (eq (window-buffer window) buffer)
467 (= (window-point window) (point-max))
468 (push window eoblist)))
469 'no-mini t))
dddc748b 470 (if auto-revert-tail-mode
fdc31e1d 471 (auto-revert-tail-handler size)
7ebc19f9
RS
472 ;; Bind buffer-read-only in case user has done C-x C-q,
473 ;; so as not to forget that. This gives undesirable results
474 ;; when the file's mode changes, but that is less common.
90e118ab
LT
475 (let ((buffer-read-only buffer-read-only))
476 (revert-buffer 'ignore-auto 'dont-ask 'preserve-modes)))
1f41bcba
LT
477 (when buffer-file-name
478 (when eob (goto-char (point-max)))
479 (dolist (window eoblist)
480 (set-window-point window (point-max)))))
71c8db4c
LT
481 ;; `preserve-modes' avoids changing the (minor) modes. But we
482 ;; do want to reset the mode for VC, so we do it manually.
483 (when (or revert auto-revert-check-vc-info)
484 (vc-find-file-hook)))))
ed35db71 485
3eedbc85 486(defun auto-revert-tail-handler (size)
fdc31e1d 487 (let ((modified (buffer-modified-p))
ddd7c238 488 (inhibit-read-only t) ; Ignore.
dddc748b 489 (file buffer-file-name)
ddd7c238 490 (buffer-file-name nil)) ; Ignore that file has changed.
fdc31e1d 491 (when (/= auto-revert-tail-pos size)
ddd7c238 492 (run-hooks 'before-revert-hook)
d918508e 493 (undo-boundary)
dddc748b
DP
494 (save-restriction
495 (widen)
496 (save-excursion
497 (goto-char (point-max))
fdc31e1d
DK
498 (insert-file-contents file nil
499 (and (< auto-revert-tail-pos size)
500 auto-revert-tail-pos)
501 size)))
ddd7c238 502 (run-hooks 'after-revert-hook)
d918508e 503 (undo-boundary)
dddc748b 504 (setq auto-revert-tail-pos size)
ddd7c238 505 (restore-buffer-modified-p modified)))
dddc748b
DP
506 (set-visited-file-modtime))
507
4a35aff3
RS
508(defun auto-revert-buffers ()
509 "Revert buffers as specified by Auto-Revert and Global Auto-Revert Mode.
510
511Should `global-auto-revert-mode' be active all file buffers are checked.
512
513Should `auto-revert-mode' be active in some buffers, those buffers
514are checked.
515
0e5dcfd7
LT
516Non-file buffers that have a custom `revert-buffer-function' and
517a `buffer-stale-function' are reverted either when Auto-Revert
518Mode is active in that buffer, or when the variable
519`global-auto-revert-non-file-buffers' is non-nil and Global
520Auto-Revert Mode is active.
4a35aff3 521
48764ae2 522This function stops whenever there is user input. The buffers not
4a35aff3
RS
523checked are stored in the variable `auto-revert-remaining-buffers'.
524
525To avoid starvation, the buffers in `auto-revert-remaining-buffers'
526are checked first the next time this function is called.
527
48764ae2 528This function is also responsible for removing buffers no longer in
4a35aff3
RS
529Auto-Revert mode from `auto-revert-buffer-list', and for canceling
530the timer when no buffers need to be checked."
33512cbe
LT
531 (save-match-data
532 (let ((bufs (if global-auto-revert-mode
533 (buffer-list)
534 auto-revert-buffer-list))
535 (remaining ())
536 (new ()))
537 ;; Partition `bufs' into two halves depending on whether or not
538 ;; the buffers are in `auto-revert-remaining-buffers'. The two
539 ;; halves are then re-joined with the "remaining" buffers at the
540 ;; head of the list.
541 (dolist (buf auto-revert-remaining-buffers)
542 (if (memq buf bufs)
543 (push buf remaining)))
544 (dolist (buf bufs)
545 (if (not (memq buf remaining))
546 (push buf new)))
547 (setq bufs (nreverse (nconc new remaining)))
548 (while (and bufs
549 (not (and auto-revert-stop-on-user-input
550 (input-pending-p))))
551 (let ((buf (car bufs)))
aa657fbf 552 (if (buffer-live-p buf)
33512cbe
LT
553 (with-current-buffer buf
554 ;; Test if someone has turned off Auto-Revert Mode in a
555 ;; non-standard way, for example by changing major mode.
556 (if (and (not auto-revert-mode)
557 (not auto-revert-tail-mode)
558 (memq buf auto-revert-buffer-list))
559 (setq auto-revert-buffer-list
560 (delq buf auto-revert-buffer-list)))
561 (when (auto-revert-active-p) (auto-revert-handler)))
562 ;; Remove dead buffer from `auto-revert-buffer-list'.
563 (setq auto-revert-buffer-list
564 (delq buf auto-revert-buffer-list))))
565 (setq bufs (cdr bufs)))
566 (setq auto-revert-remaining-buffers bufs)
567 ;; Check if we should cancel the timer.
568 (when (and (not global-auto-revert-mode)
569 (null auto-revert-buffer-list))
570 (cancel-timer auto-revert-timer)
571 (setq auto-revert-timer nil)))))
4a35aff3
RS
572
573
574;; The end:
4a35aff3
RS
575(provide 'autorevert)
576
577(run-hooks 'auto-revert-load-hook)
578
ddd7c238 579;; arch-tag: f6bcb07b-4841-477e-9e44-b18678e58876
e8af40ee 580;;; autorevert.el ends here