diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2013-01-12 14:30:00 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2013-01-12 14:30:00 +0100 |
commit | 2daddd9e8a133c80e582e364afd65949a8b2f9d9 (patch) | |
tree | fa0863a762d74c3f87249d1b9f1490890e61883e /lisp/autorevert.el | |
parent | 86fbb162a47cd754b03ab01bd3142f35a34ea0fb (diff) | |
download | emacs-2daddd9e8a133c80e582e364afd65949a8b2f9d9.tar.gz emacs-2daddd9e8a133c80e582e364afd65949a8b2f9d9.tar.bz2 emacs-2daddd9e8a133c80e582e364afd65949a8b2f9d9.zip |
* autorevert.el (auto-revert-notify-watch-descriptor): Give it
`permanent-local' property.
Diffstat (limited to 'lisp/autorevert.el')
-rw-r--r-- | lisp/autorevert.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/autorevert.el b/lisp/autorevert.el index 60235cdd77b..51146950a5c 100644 --- a/lisp/autorevert.el +++ b/lisp/autorevert.el @@ -311,7 +311,7 @@ Hash key is a watch descriptor, hash value is the corresponding buffer.") (defvar auto-revert-notify-watch-descriptor nil "The file watch descriptor active for the current buffer.") -(make-variable-buffer-local 'auto-revert-notify-watch-descriptor) +(put 'auto-revert-notify-watch-descriptor 'permanent-local t) (defvar auto-revert-notify-modified-p nil "Non-nil when file has been modified on the file system. |