aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2013-01-17 20:12:40 +0100
committerMichael Albinus2013-01-17 20:12:40 +0100
commit0eb8768885fab926acfae16d2fae8d39a72d8f35 (patch)
tree891e826330ce6249f250305d8b14d05cad52ef4c
parent858c7150f6a3409452b3493aebb7240c7ca22ad2 (diff)
downloademacs-0eb8768885fab926acfae16d2fae8d39a72d8f35.tar.gz
emacs-0eb8768885fab926acfae16d2fae8d39a72d8f35.zip
* autorevert.el (auto-revert-notify-watch-descriptor): Make it
buffer local, again. This was lost with the fix on 2013-01-12.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/autorevert.el1
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8dc238f937b..c2a58265ffd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12013-01-17 Michael Albinus <michael.albinus@gmx.de>
2
3 * autorevert.el (auto-revert-notify-watch-descriptor): Make it
4 buffer local, again. This was lost with the fix on 2013-01-12.
5
12013-01-17 Jürgen Hötzel <juergen@archlinux.org> 62013-01-17 Jürgen Hötzel <juergen@archlinux.org>
2 7
3 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in 8 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
diff --git a/lisp/autorevert.el b/lisp/autorevert.el
index 1ee1db01657..1b5460ff2cf 100644
--- a/lisp/autorevert.el
+++ b/lisp/autorevert.el
@@ -310,6 +310,7 @@ Hash key is a watch descriptor, hash value is the corresponding buffer.")
310 310
311(defvar auto-revert-notify-watch-descriptor nil 311(defvar auto-revert-notify-watch-descriptor nil
312 "The file watch descriptor active for the current buffer.") 312 "The file watch descriptor active for the current buffer.")
313(make-variable-buffer-local 'auto-revert-notify-watch-descriptor)
313(put 'auto-revert-notify-watch-descriptor 'permanent-local t) 314(put 'auto-revert-notify-watch-descriptor 'permanent-local t)
314 315
315(defvar auto-revert-notify-modified-p nil 316(defvar auto-revert-notify-modified-p nil