diff options
| author | Luc Teirlinck | 2004-03-27 03:54:41 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-03-27 03:54:41 +0000 |
| commit | 0e3dc638b703941b404ceb237e474cd6f4ea7d90 (patch) | |
| tree | af4c67ecc8ffb7a9c726fdb107a0e350df3af3ea | |
| parent | 77bca4db956e691bb3f4f15912a0454fc7272b3b (diff) | |
| download | emacs-0e3dc638b703941b404ceb237e474cd6f4ea7d90.tar.gz emacs-0e3dc638b703941b404ceb237e474cd6f4ea7d90.zip | |
(buffer-stale-function): Doc fix.
| -rw-r--r-- | lisp/files.el | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/files.el b/lisp/files.el index fd97afa3073..c098cbcc7ff 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -3461,11 +3461,10 @@ Auto Revert Mode sets NOCONFIRM to t. The function should return | |||
| 3461 | non-nil if the buffer should be reverted. The buffer is current | 3461 | non-nil if the buffer should be reverted. The buffer is current |
| 3462 | when this function is called. | 3462 | when this function is called. |
| 3463 | 3463 | ||
| 3464 | The idea behind the NOCONFIRM argument is that the same function | 3464 | The idea behind the NOCONFIRM argument is that it should be t if |
| 3465 | can also be used to ask the user whether the buffer should be | 3465 | the buffer is going to be reverted without asking the user. In |
| 3466 | reverted. In such a situation one has to be less careful about, | 3466 | such situations, one has to be careful with potentially time |
| 3467 | say, reverting remote files, than if the function is called at | 3467 | consuming operations.") |
| 3468 | regular intervals by Auto Revert Mode.") | ||
| 3469 | 3468 | ||
| 3470 | (defvar before-revert-hook nil | 3469 | (defvar before-revert-hook nil |
| 3471 | "Normal hook for `revert-buffer' to run before reverting. | 3470 | "Normal hook for `revert-buffer' to run before reverting. |