diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2007-03-17 20:38:17 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2007-03-17 20:38:17 +0000 |
commit | 534a87c49acdfc1dcd571ba571b951546fc69ac6 (patch) | |
tree | b5416d93ffc2a3652641daa34b24ef418493631a | |
parent | a919f39a5bca800d2098e4d46db5bd3e40e66617 (diff) | |
download | emacs-534a87c49acdfc1dcd571ba571b951546fc69ac6.tar.gz |
(auto-revert-tail-handler): Call after-revert-hook.
-rw-r--r-- | lisp/autorevert.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/autorevert.el b/lisp/autorevert.el index cb8821bb64c..bd9d6fe76e8 100644 --- a/lisp/autorevert.el +++ b/lisp/autorevert.el @@ -457,6 +457,7 @@ This is an internal function used by Auto-Revert Mode." (save-excursion (goto-char (point-max)) (insert-file-contents file nil auto-revert-tail-pos size))) + (run-mode-hooks 'after-revert-hook) (undo-boundary) (setq auto-revert-tail-pos size) (set-buffer-modified-p modified))) |