| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
|
|---|
| 45 |
|
|---|
| 46 |
|
|---|
| 47 |
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 |
|
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 |
|
|---|
| 54 |
|
|---|
| 55 |
|
|---|
| 56 |
|
|---|
| 57 |
|
|---|
| 58 |
|
|---|
| 59 |
|
|---|
| 60 |
|
|---|
| 61 |
|
|---|
| 62 |
|
|---|
| 63 |
|
|---|
| 64 |
|
|---|
| 65 |
|
|---|
| 66 |
|
|---|
| 67 |
|
|---|
| 68 |
|
|---|
| 69 |
|
|---|
| 70 |
|
|---|
| 71 |
|
|---|
| 72 |
|
|---|
| 73 |
|
|---|
| 74 |
|
|---|
| 75 |
|
|---|
| 76 |
|
|---|
| 77 |
|
|---|
| 78 |
|
|---|
| 79 |
|
|---|
| 80 |
|
|---|
| 81 |
|
|---|
| 82 |
|
|---|
| 83 |
|
|---|
| 84 |
|
|---|
| 85 |
|
|---|
| 86 |
|
|---|
| 87 |
|
|---|
| 88 |
|
|---|
| 89 |
|
|---|
| 90 |
|
|---|
| 91 |
|
|---|
| 92 |
|
|---|
| 93 |
|
|---|
| 94 |
|
|---|
| 95 |
|
|---|
| 96 |
|
|---|
| 97 |
(require 'timer) |
|---|
| 98 |
|
|---|
| 99 |
(eval-when-compile (require 'cl)) |
|---|
| 100 |
|
|---|
| 101 |
|
|---|
| 102 |
|
|---|
| 103 |
|
|---|
| 104 |
|
|---|
| 105 |
|
|---|
| 106 |
|
|---|
| 107 |
(defgroup auto-revert nil |
|---|
| 108 |
"Revert individual buffers when files on disk change. |
|---|
| 109 |
|
|---|
| 110 |
Auto-Revert Mode can be activated for individual buffer. |
|---|
| 111 |
Global Auto-Revert Mode applies to all buffers." |
|---|
| 112 |
:group 'files |
|---|
| 113 |
:group 'convenience) |
|---|
| 114 |
|
|---|
| 115 |
|
|---|
| 116 |
|
|---|
| 117 |
|
|---|
| 118 |
|
|---|
| 119 |
|
|---|
| 120 |
(defvar auto-revert-mode nil |
|---|
| 121 |
"*Non-nil when Auto-Revert Mode is active. |
|---|
| 122 |
Never set this variable directly, use the command `auto-revert-mode' instead.") |
|---|
| 123 |
(put 'auto-revert-mode 'permanent-local t) |
|---|
| 124 |
|
|---|
| 125 |
(defvar auto-revert-tail-mode nil |
|---|
| 126 |
"*Non-nil when Auto-Revert Tail Mode is active. |
|---|
| 127 |
Never set this variable directly, use the command |
|---|
| 128 |
`auto-revert-tail-mode' instead.") |
|---|
| 129 |
(put 'auto-revert-tail-mode 'permanent-local t) |
|---|
| 130 |
|
|---|
| 131 |
(defvar auto-revert-timer nil |
|---|
| 132 |
"Timer used by Auto-Revert Mode.") |
|---|
| 133 |
|
|---|
| 134 |
(defcustom auto-revert-interval 5 |
|---|
| 135 |
"Time, in seconds, between Auto-Revert Mode file checks. |
|---|
| 136 |
The value may be an integer or floating point number. |
|---|
| 137 |
|
|---|
| 138 |
If a timer is already active, there are two ways to make sure |
|---|
| 139 |
that the new value will take effect immediately. You can set |
|---|
| 140 |
this variable through Custom or you can call the command |
|---|
| 141 |
`auto-revert-set-timer' after setting the variable. Otherwise, |
|---|
| 142 |
the new value will take effect the first time Auto Revert Mode |
|---|
| 143 |
calls `auto-revert-set-timer' for internal reasons or in your |
|---|
| 144 |
next editing session." |
|---|
| 145 |
:group 'auto-revert |
|---|
| 146 |
:type 'number |
|---|
| 147 |
:set (lambda (variable value) |
|---|
| 148 |
(set-default variable value) |
|---|
| 149 |
(and (boundp 'auto-revert-timer) |
|---|
| 150 |
auto-revert-timer |
|---|
| 151 |
(auto-revert-set-timer)))) |
|---|
| 152 |
|
|---|
| 153 |
(defcustom auto-revert-stop-on-user-input t |
|---|
| 154 |
"When non-nil, user input temporarily interrupts Auto-Revert Mode. |
|---|
| 155 |
With this setting, Auto-Revert Mode checks for user input after |
|---|
| 156 |
handling each buffer and does not process any further buffers |
|---|
| 157 |
\(until the next run of the timer) if user input is available. |
|---|
| 158 |
When nil, Auto-Revert Mode checks files and reverts buffers, |
|---|
| 159 |
with quitting disabled, without paying attention to user input. |
|---|
| 160 |
Thus, with this setting, Emacs might be non-responsive at times." |
|---|
| 161 |
:group 'auto-revert |
|---|
| 162 |
:type 'boolean) |
|---|
| 163 |
|
|---|
| 164 |
(defcustom auto-revert-verbose t |
|---|
| 165 |
"When nil, Auto-Revert Mode does not generate any messages. |
|---|
| 166 |
When non-nil, a message is generated whenever a file is reverted." |
|---|
| 167 |
:group 'auto-revert |
|---|
| 168 |
:type 'boolean) |
|---|
| 169 |
|
|---|
| 170 |
(defcustom auto-revert-mode-text " ARev" |
|---|
| 171 |
"String to display in the mode line when Auto-Revert Mode is active. |
|---|
| 172 |
|
|---|
| 173 |
\(When the string is not empty, make sure that it has a leading space.)" |
|---|
| 174 |
:tag "Auto Revert Mode Text" |
|---|
| 175 |
:group 'auto-revert |
|---|
| 176 |
:type 'string) |
|---|
| 177 |
|
|---|
| 178 |
(defcustom auto-revert-tail-mode-text " Tail" |
|---|
| 179 |
"String to display in the mode line when Auto-Revert Tail Mode is active. |
|---|
| 180 |
|
|---|
| 181 |
\(When the string is not empty, make sure that it has a leading space.)" |
|---|
| 182 |
:group 'auto-revert |
|---|
| 183 |
:type 'string |
|---|
| 184 |
:version "22.1") |
|---|
| 185 |
|
|---|
| 186 |
(defcustom auto-revert-mode-hook nil |
|---|
| 187 |
"Functions to run when Auto-Revert Mode is activated." |
|---|
| 188 |
:tag "Auto Revert Mode Hook" |
|---|
| 189 |
:group 'auto-revert |
|---|
| 190 |
:type 'hook) |
|---|
| 191 |
|
|---|
| 192 |
(defcustom global-auto-revert-mode-text "" |
|---|
| 193 |
"String to display when Global Auto-Revert Mode is active. |
|---|
| 194 |
|
|---|
| 195 |
The default is nothing since when this mode is active this text doesn't |
|---|
| 196 |
vary over time, or between buffers. Hence mode line text |
|---|
| 197 |
would only waste precious space." |
|---|
| 198 |
:group 'auto-revert |
|---|
| 199 |
:type 'string) |
|---|
| 200 |
|
|---|
| 201 |
(defcustom global-auto-revert-mode-hook nil |
|---|
| 202 |
"Hook called when Global Auto-Revert Mode is activated." |
|---|
| 203 |
:group 'auto-revert |
|---|
| 204 |
:type 'hook) |
|---|
| 205 |
|
|---|
| 206 |
(defcustom global-auto-revert-non-file-buffers nil |
|---|
| 207 |
"When nil, Global Auto-Revert mode operates only on file-visiting buffers. |
|---|
| 208 |
|
|---|
| 209 |
When non-nil, both file buffers and buffers with a custom |
|---|
| 210 |
`revert-buffer-function' and a `buffer-stale-function' are |
|---|
| 211 |
reverted by Global Auto-Revert mode. These include the Buffer |
|---|
| 212 |
List buffer, and Dired buffers showing complete local |
|---|
| 213 |
directories. Dired buffers do not auto-revert as a result of |
|---|
| 214 |
changes in subdirectories or in the contents, size, modes, etc., |
|---|
| 215 |
of files. You may still sometimes want to revert them manually. |
|---|
| 216 |
|
|---|
| 217 |
Use this option with care since it could lead to excessive auto-reverts. |
|---|
| 218 |
For more information, see Info node `(emacs)Autorevert'." |
|---|
| 219 |
:group 'auto-revert |
|---|
| 220 |
:type 'boolean |
|---|
| 221 |
:link '(info-link "(emacs)Autorevert")) |
|---|
| 222 |
|
|---|
| 223 |
(defcustom global-auto-revert-ignore-modes () |
|---|
| 224 |
"List of major modes Global Auto-Revert Mode should not check." |
|---|
| 225 |
:group 'auto-revert |
|---|
| 226 |
:type '(repeat sexp)) |
|---|
| 227 |
|
|---|
| 228 |
(defcustom auto-revert-load-hook nil |
|---|
| 229 |
"Functions to run when Auto-Revert Mode is first loaded." |
|---|
| 230 |
:tag "Load Hook" |
|---|
| 231 |
:group 'auto-revert |
|---|
| 232 |
:type 'hook) |
|---|
| 233 |
|
|---|
| 234 |
(defcustom auto-revert-check-vc-info nil |
|---|
| 235 |
"If non-nil Auto Revert Mode reliably updates version control info. |
|---|
| 236 |
Auto Revert Mode updates version control info whenever the buffer |
|---|
| 237 |
needs reverting, regardless of the value of this variable. |
|---|
| 238 |
However, the version control state can change without changes to |
|---|
| 239 |
the work file. If the change is made from the current Emacs |
|---|
| 240 |
session, all info is updated. But if, for instance, a new |
|---|
| 241 |
version is checked in from outside the current Emacs session, the |
|---|
| 242 |
version control number in the mode line, as well as other version |
|---|
| 243 |
control related information, may not be properly updated. If you |
|---|
| 244 |
are worried about this, set this variable to a non-nil value. |
|---|
| 245 |
|
|---|
| 246 |
This currently works by automatically updating the version |
|---|
| 247 |
control info every `auto-revert-interval' seconds. Nevertheless, |
|---|
| 248 |
it should not cause excessive CPU usage on a reasonably fast |
|---|
| 249 |
machine, if it does not apply to too many version controlled |
|---|
| 250 |
buffers. CPU usage depends on the version control system." |
|---|
| 251 |
:group 'auto-revert |
|---|
| 252 |
:type 'boolean |
|---|
| 253 |
:version "22.1") |
|---|
| 254 |
|
|---|
| 255 |
(defvar global-auto-revert-ignore-buffer nil |
|---|
| 256 |
"*When non-nil, Global Auto-Revert Mode will not revert this buffer. |
|---|
| 257 |
|
|---|
| 258 |
This variable becomes buffer local when set in any fashion.") |
|---|
| 259 |
(make-variable-buffer-local 'global-auto-revert-ignore-buffer) |
|---|
| 260 |
|
|---|
| 261 |
|
|---|
| 262 |
|
|---|
| 263 |
(defvar auto-revert-buffer-list () |
|---|
| 264 |
"List of buffers in Auto-Revert Mode. |
|---|
| 265 |
|
|---|
| 266 |
Note that only Auto-Revert Mode, never Global Auto-Revert Mode, adds |
|---|
| 267 |
buffers to this list. |
|---|
| 268 |
|
|---|
| 269 |
The timer function `auto-revert-buffers' is responsible for purging |
|---|
| 270 |
the list of old buffers.") |
|---|
| 271 |
|
|---|
| 272 |
(defvar auto-revert-remaining-buffers () |
|---|
| 273 |
"Buffers not checked when user input stopped execution.") |
|---|
| 274 |
|
|---|
| 275 |
(defvar auto-revert-tail-pos 0 |
|---|
| 276 |
"Position of last known end of file.") |
|---|
| 277 |
|
|---|
| 278 |
(add-hook 'find-file-hook |
|---|
| 279 |
(lambda () |
|---|
| 280 |
(set (make-local-variable 'auto-revert-tail-pos) |
|---|
| 281 |
(nth 7 (file-attributes buffer-file-name))))) |
|---|
| 282 |
|
|---|
| 283 |
|
|---|
| 284 |
|
|---|
| 285 |
|
|---|
| 286 |
(define-minor-mode auto-revert-mode |
|---|
| 287 |
"Toggle reverting buffer when file on disk changes. |
|---|
| 288 |
|
|---|
| 289 |
With arg, turn Auto Revert mode on if and only if arg is positive. |
|---|
| 290 |
This is a minor mode that affects only the current buffer. |
|---|
| 291 |
Use `global-auto-revert-mode' to automatically revert all buffers. |
|---|
| 292 |
Use `auto-revert-tail-mode' if you know that the file will only grow |
|---|
| 293 |
without being changed in the part that is already in the buffer." |
|---|
| 294 |
:group 'auto-revert :lighter auto-revert-mode-text |
|---|
| 295 |
(if auto-revert-mode |
|---|
| 296 |
(if (not (memq (current-buffer) auto-revert-buffer-list)) |
|---|
| 297 |
(push (current-buffer) auto-revert-buffer-list)) |
|---|
| 298 |
(setq auto-revert-buffer-list |
|---|
| 299 |
(delq (current-buffer) auto-revert-buffer-list))) |
|---|
| 300 |
(auto-revert-set-timer) |
|---|
| 301 |
(when auto-revert-mode |
|---|
| 302 |
(auto-revert-buffers) |
|---|
| 303 |
(setq auto-revert-tail-mode nil))) |
|---|
| 304 |
|
|---|
| 305 |
|
|---|
| 306 |
|
|---|
| 307 |
(defun turn-on-auto-revert-mode () |
|---|
| 308 |
"Turn on Auto-Revert Mode. |
|---|
| 309 |
|
|---|
| 310 |
This function is designed to be added to hooks, for example: |
|---|
| 311 |
(add-hook 'c-mode-hook 'turn-on-auto-revert-mode)" |
|---|
| 312 |
(auto-revert-mode 1)) |
|---|
| 313 |
|
|---|
| 314 |
|
|---|
| 315 |
|
|---|
| 316 |
(define-minor-mode auto-revert-tail-mode |
|---|
| 317 |
"Toggle reverting tail of buffer when file on disk grows. |
|---|
| 318 |
With arg, turn Tail mode on if arg is positive, otherwise turn it off. |
|---|
| 319 |
|
|---|
| 320 |
When Tail mode is enabled, the tail of the file is constantly |
|---|
| 321 |
followed, as with the shell command `tail -f'. This means that |
|---|
| 322 |
whenever the file grows on disk (presumably because some |
|---|
| 323 |
background process is appending to it from time to time), this is |
|---|
| 324 |
reflected in the current buffer. |
|---|
| 325 |
|
|---|
| 326 |
You can edit the buffer and turn this mode off and on again as |
|---|
| 327 |
you please. But make sure the background process has stopped |
|---|
| 328 |
writing before you save the file! |
|---|
| 329 |
|
|---|
| 330 |
Use `auto-revert-mode' for changes other than appends!" |
|---|
| 331 |
:group 'find-file :lighter auto-revert-tail-mode-text |
|---|
| 332 |
(when auto-revert-tail-mode |
|---|
| 333 |
(unless buffer-file-name |
|---|
| 334 |
(auto-revert-tail-mode 0) |
|---|
| 335 |
(error "This buffer is not visiting a file")) |
|---|
| 336 |
(if (and (buffer-modified-p) |
|---|
| 337 |
(not auto-revert-tail-pos) |
|---|
| 338 |
(not (y-or-n-p "Buffer is modified, so tail offset may be wrong. Proceed? "))) |
|---|
| 339 |
(auto-revert-tail-mode 0) |
|---|
| 340 |
|
|---|
| 341 |
|
|---|
| 342 |
|
|---|
| 343 |
|
|---|
| 344 |
|
|---|
| 345 |
|
|---|
| 346 |
|
|---|
| 347 |
|
|---|
| 348 |
|
|---|
| 349 |
|
|---|
| 350 |
(and (zerop auto-revert-tail-pos) |
|---|
| 351 |
(not (verify-visited-file-modtime (current-buffer))) |
|---|
| 352 |
(y-or-n-p "File changed on disk, content may be missing. \ |
|---|
| 353 |
Perform a full revert? ") |
|---|
| 354 |
|
|---|
| 355 |
(auto-revert-handler)) |
|---|
| 356 |
|
|---|
| 357 |
(add-hook 'before-save-hook (lambda () (auto-revert-tail-mode 0)) nil t) |
|---|
| 358 |
(or (local-variable-p 'auto-revert-tail-pos) |
|---|
| 359 |
(set (make-local-variable 'auto-revert-tail-pos) |
|---|
| 360 |
(nth 7 (file-attributes buffer-file-name)))) |
|---|
| 361 |
|
|---|
| 362 |
(or auto-revert-mode |
|---|
| 363 |
(let ((auto-revert-tail-mode t)) |
|---|
| 364 |
(auto-revert-mode 1))) |
|---|
| 365 |
(setq auto-revert-mode nil)))) |
|---|
| 366 |
|
|---|
| 367 |
|
|---|
| 368 |
|
|---|
| 369 |
(defun turn-on-auto-revert-tail-mode () |
|---|
| 370 |
"Turn on Auto-Revert Tail Mode. |
|---|
| 371 |
|
|---|
| 372 |
This function is designed to be added to hooks, for example: |
|---|
| 373 |
(add-hook 'my-logfile-mode-hook 'turn-on-auto-revert-tail-mode)" |
|---|
| 374 |
(auto-revert-tail-mode 1)) |
|---|
| 375 |
|
|---|
| 376 |
|
|---|
| 377 |
|
|---|
| 378 |
(define-minor-mode global-auto-revert-mode |
|---|
| 379 |
"Revert any buffer when file on disk changes. |
|---|
| 380 |
|
|---|
| 381 |
With arg, turn Auto Revert mode on globally if and only if arg is positive. |
|---|
| 382 |
This is a minor mode that affects all buffers. |
|---|
| 383 |
Use `auto-revert-mode' to revert a particular buffer." |
|---|
| 384 |
:global t :group 'auto-revert :lighter global-auto-revert-mode-text |
|---|
| 385 |
(auto-revert-set-timer) |
|---|
| 386 |
(when global-auto-revert-mode |
|---|
| 387 |
(auto-revert-buffers))) |
|---|
| 388 |
|
|---|
| 389 |
|
|---|
| 390 |
(defun auto-revert-set-timer () |
|---|
| 391 |
"Restart or cancel the timer used by Auto-Revert Mode. |
|---|
| 392 |
If such a timer is active, cancel it. Start a new timer if |
|---|
| 393 |
Global Auto-Revert Mode is active or if Auto-Revert Mode is active |
|---|
| 394 |
in some buffer. Restarting the timer ensures that Auto-Revert Mode |
|---|
| 395 |
will use an up-to-date value of `auto-revert-interval'" |
|---|
| 396 |
(interactive) |
|---|
| 397 |
(if (timerp auto-revert-timer) |
|---|
| 398 |
(cancel-timer auto-revert-timer)) |
|---|
| 399 |
(setq auto-revert-timer |
|---|
| 400 |
(if (or global-auto-revert-mode auto-revert-buffer-list) |
|---|
| 401 |
(run-with-timer auto-revert-interval |
|---|
| 402 |
auto-revert-interval |
|---|
| 403 |
'auto-revert-buffers)))) |
|---|
| 404 |
|
|---|
| 405 |
(defun auto-revert-active-p () |
|---|
| 406 |
"Check if auto-revert is active (in current buffer or globally)." |
|---|
| 407 |
(or auto-revert-mode |
|---|
| 408 |
auto-revert-tail-mode |
|---|
| 409 |
(and |
|---|
| 410 |
global-auto-revert-mode |
|---|
| 411 |
(not global-auto-revert-ignore-buffer) |
|---|
| 412 |
(not (memq major-mode |
|---|
| 413 |
global-auto-revert-ignore-modes))))) |
|---|
| 414 |
|
|---|
| 415 |
(defun auto-revert-handler () |
|---|
| 416 |
"Revert current buffer, if appropriate. |
|---|
| 417 |
This is an internal function used by Auto-Revert Mode." |
|---|
| 418 |
(when (or auto-revert-tail-mode (not (buffer-modified-p))) |
|---|
| 419 |
(let* ((buffer (current-buffer)) |
|---|
| 420 |
(revert |
|---|
| 421 |
(or (and buffer-file-name |
|---|
| 422 |
(not (file-remote-p buffer-file-name)) |
|---|
| 423 |
(file-readable-p buffer-file-name) |
|---|
| 424 |
(not (verify-visited-file-modtime buffer))) |
|---|
| 425 |
(and (or auto-revert-mode |
|---|
| 426 |
global-auto-revert-non-file-buffers) |
|---|
| 427 |
revert-buffer-function |
|---|
| 428 |
(boundp 'buffer-stale-function) |
|---|
| 429 |
(functionp buffer-stale-function) |
|---|
| 430 |
(funcall buffer-stale-function t)))) |
|---|
| 431 |
eob eoblist) |
|---|
| 432 |
(when revert |
|---|
| 433 |
(when (and auto-revert-verbose |
|---|
| 434 |
(not (eq revert 'fast))) |
|---|
| 435 |
(message "Reverting buffer `%s'." (buffer-name))) |
|---|
| 436 |
|
|---|
| 437 |
|
|---|
| 438 |
|
|---|
| 439 |
(when buffer-file-name |
|---|
| 440 |
(setq eob (eobp)) |
|---|
| 441 |
(walk-windows |
|---|
| 442 |
#'(lambda (window) |
|---|
| 443 |
(and (eq (window-buffer window) buffer) |
|---|
| 444 |
(= (window-point window) (point-max)) |
|---|
| 445 |
(push window eoblist))) |
|---|
| 446 |
'no-mini t)) |
|---|
| 447 |
(if auto-revert-tail-mode |
|---|
| 448 |
(auto-revert-tail-handler) |
|---|
| 449 |
|
|---|
| 450 |
|
|---|
| 451 |
|
|---|
| 452 |
(let ((buffer-read-only buffer-read-only)) |
|---|
| 453 |
(revert-buffer 'ignore-auto 'dont-ask 'preserve-modes))) |
|---|
| 454 |
(when buffer-file-name |
|---|
| 455 |
(when eob (goto-char (point-max))) |
|---|
| 456 |
(dolist (window eoblist) |
|---|
| 457 |
(set-window-point window (point-max))))) |
|---|
| 458 |
|
|---|
| 459 |
|
|---|
| 460 |
(when (or revert auto-revert-check-vc-info) |
|---|
| 461 |
(vc-find-file-hook))))) |
|---|
| 462 |
|
|---|
| 463 |
(defun auto-revert-tail-handler () |
|---|
| 464 |
(let ((size (nth 7 (file-attributes buffer-file-name))) |
|---|
| 465 |
(modified (buffer-modified-p)) |
|---|
| 466 |
buffer-read-only |
|---|
| 467 |
(file buffer-file-name) |
|---|
| 468 |
buffer-file-name) |
|---|
| 469 |
(when (> size auto-revert-tail-pos) |
|---|
| 470 |
(undo-boundary) |
|---|
| 471 |
(save-restriction |
|---|
| 472 |
(widen) |
|---|
| 473 |
(save-excursion |
|---|
| 474 |
(goto-char (point-max)) |
|---|
| 475 |
(insert-file-contents file nil auto-revert-tail-pos size))) |
|---|
| 476 |
(run-mode-hooks 'after-revert-hook) |
|---|
| 477 |
(undo-boundary) |
|---|
| 478 |
(setq auto-revert-tail-pos size) |
|---|
| 479 |
(set-buffer-modified-p modified))) |
|---|
| 480 |
(set-visited-file-modtime)) |
|---|
| 481 |
|
|---|
| 482 |
(defun auto-revert-buffers () |
|---|
| 483 |
"Revert buffers as specified by Auto-Revert and Global Auto-Revert Mode. |
|---|
| 484 |
|
|---|
| 485 |
Should `global-auto-revert-mode' be active all file buffers are checked. |
|---|
| 486 |
|
|---|
| 487 |
Should `auto-revert-mode' be active in some buffers, those buffers |
|---|
| 488 |
are checked. |
|---|
| 489 |
|
|---|
| 490 |
Non-file buffers that have a custom `revert-buffer-function' and |
|---|
| 491 |
a `buffer-stale-function' are reverted either when Auto-Revert |
|---|
| 492 |
Mode is active in that buffer, or when the variable |
|---|
| 493 |
`global-auto-revert-non-file-buffers' is non-nil and Global |
|---|
| 494 |
Auto-Revert Mode is active. |
|---|
| 495 |
|
|---|
| 496 |
This function stops whenever there is user input. The buffers not |
|---|
| 497 |
checked are stored in the variable `auto-revert-remaining-buffers'. |
|---|
| 498 |
|
|---|
| 499 |
To avoid starvation, the buffers in `auto-revert-remaining-buffers' |
|---|
| 500 |
are checked first the next time this function is called. |
|---|
| 501 |
|
|---|
| 502 |
This function is also responsible for removing buffers no longer in |
|---|
| 503 |
Auto-Revert mode from `auto-revert-buffer-list', and for canceling |
|---|
| 504 |
the timer when no buffers need to be checked." |
|---|
| 505 |
(save-match-data |
|---|
| 506 |
(let ((bufs (if global-auto-revert-mode |
|---|
| 507 |
(buffer-list) |
|---|
| 508 |
auto-revert-buffer-list)) |
|---|
| 509 |
(remaining ()) |
|---|
| 510 |
(new ())) |
|---|
| 511 |
|
|---|
| 512 |
|
|---|
| 513 |
|
|---|
| 514 |
|
|---|
| 515 |
(dolist (buf auto-revert-remaining-buffers) |
|---|
| 516 |
(if (memq buf bufs) |
|---|
| 517 |
(push buf remaining))) |
|---|
| 518 |
(dolist (buf bufs) |
|---|
| 519 |
(if (not (memq buf remaining)) |
|---|
| 520 |
(push buf new))) |
|---|
| 521 |
(setq bufs (nreverse (nconc new remaining))) |
|---|
| 522 |
(while (and bufs |
|---|
| 523 |
(not (and auto-revert-stop-on-user-input |
|---|
| 524 |
(input-pending-p)))) |
|---|
| 525 |
(let ((buf (car bufs))) |
|---|
| 526 |
(if (buffer-name buf) |
|---|
| 527 |
(with-current-buffer buf |
|---|
| 528 |
|
|---|
| 529 |
|
|---|
| 530 |
(if (and (not auto-revert-mode) |
|---|
| 531 |
(not auto-revert-tail-mode) |
|---|
| 532 |
(memq buf auto-revert-buffer-list)) |
|---|
| 533 |
(setq auto-revert-buffer-list |
|---|
| 534 |
(delq buf auto-revert-buffer-list))) |
|---|
| 535 |
(when (auto-revert-active-p) (auto-revert-handler))) |
|---|
| 536 |
|
|---|
| 537 |
(setq auto-revert-buffer-list |
|---|
| 538 |
(delq buf auto-revert-buffer-list)))) |
|---|
| 539 |
(setq bufs (cdr bufs))) |
|---|
| 540 |
(setq auto-revert-remaining-buffers bufs) |
|---|
| 541 |
|
|---|
| 542 |
(when (and (not global-auto-revert-mode) |
|---|
| 543 |
(null auto-revert-buffer-list)) |
|---|
| 544 |
(cancel-timer auto-revert-timer) |
|---|
| 545 |
(setq auto-revert-timer nil))))) |
|---|
| 546 |
|
|---|
| 547 |
|
|---|
| 548 |
|
|---|
| 549 |
(provide 'autorevert) |
|---|
| 550 |
|
|---|
| 551 |
(run-hooks 'auto-revert-load-hook) |
|---|
| 552 |
|
|---|
| 553 |
|
|---|
| 554 |
|
|---|
| 555 |
|
|---|