diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/autorevert.el | 1 |
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 @@ | |||
| 1 | 2013-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 | |||
| 1 | 2013-01-17 Jürgen Hötzel <juergen@archlinux.org> | 6 | 2013-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 |