]> git.eshelyaron.com Git - emacs.git/commitdiff
(auto-revert-mode): Make auto-revert-mode permanent-local.
authorGerd Moellmann <gerd@gnu.org>
Tue, 19 Oct 1999 13:29:18 +0000 (13:29 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 19 Oct 1999 13:29:18 +0000 (13:29 +0000)
lisp/ChangeLog
lisp/autorevert.el

index c943c4e3b15aa956e182e54c16365e067580318b..175343b06524a2ff8d90b295119b8838988e56f1 100644 (file)
@@ -1,3 +1,8 @@
+1999-10-19  Gerd Moellmann  <gerd@gnu.org>
+
+       * autorevert.el (auto-revert-mode): Make auto-revert-mode
+       permanent-local.
+
 1999-10-19  Peter Kleiweg  <kleiweg@let.rug.nl>
        
        * progmodes/ps-mode.el (ps-mode-print-function): Fix default
index 94cae66c960045ab94f13055fc3056bc0045004f..55038391f5d08cdaf65124cb3051f7789ecd5253 100644 (file)
@@ -220,6 +220,7 @@ This is a minor mode that affects only the current buffer.
 Use `global-auto-revert-mode' to automatically revert all buffers."
   (interactive "P")
   (make-local-variable 'auto-revert-mode)
+  (put 'auto-revert-mode 'permanent-local t)
   (setq auto-revert-mode
        (if (null arg)
            (not auto-revert-mode)