]> git.eshelyaron.com Git - emacs.git/commitdiff
Set auto-revert-use-notify to nil in global-auto-revert-mode. (Bug#22814)
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 28 Feb 2016 09:54:45 +0000 (10:54 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 28 Feb 2016 09:54:45 +0000 (10:54 +0100)
* etc/NEWS:
* etc/PROBLEMS: Mention this.

* lisp/autorevert.el (global-auto-revert-mode): Set
`auto-revert-use-notify' to nil.  (Bug#22814)

etc/NEWS
etc/PROBLEMS
lisp/autorevert.el

index 8d8660526ed27c16974490da3c76d2aa40b1837d..ecbc4ef248edd52ba0fdb90b065d6c6bfbbdc6f2 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1222,9 +1222,15 @@ make the new option `eshell-destroy-buffer-when-process-dies' non-nil.
 ** tar-mode: new `tar-new-entry' command, allowing for new members to
 be added to the archive.
 
+** Autorevert
+
+---
+*** Dired buffers are also auto-reverted via file notifications, if
+Emacs is compiled with file notification support.
+
 ---
-** Autorevert: dired buffers are also auto-reverted via file
-notifications, if Emacs is compiled with file notification support.
+*** `auto-revert-use-notify' is set to nil in `global-auto-revert-mode'.
+See <http://debbugs.gnu.org/22814>.
 
 ** File Notifications
 
index 0491935b10c15eb68e8fa7c49035b040869f7fe8..d5313677113fa5845ee3b518c056c29b9a577a20 100644 (file)
@@ -601,6 +601,7 @@ can cause this error.  Remove that file, execute 'ispell-kill-ispell'
 in Emacs, and then try spell-checking again.
 
 *** Emacs eats all file descriptors when using kqueue file notifications.
+See <http://debbugs.gnu.org/22814>.
 
 When you have a large number of buffers running auto-revert-mode, and
 Emacs is configured to use the kqueue file notification library, it
@@ -608,7 +609,7 @@ uses an own file descriptor for every watched file.  On systems with a
 small limit of file descriptors allowed per process, like OS X, you
 could run out of file descriptors.  You won't be able to open new files.
 
-Set auto-revert-use-notify to nil in order to avoid this problem.
+auto-revert-use-notify is set to nil in global-auto-revert-mode, therefore.
 
 * Runtime problems related to font handling
 
index 14e39bddd2e7e736e572e1d3c5d0bfe314065cf9..bde8eb84a64cc07adf2c0c34afbae3ed91034c46 100644 (file)
@@ -458,7 +458,11 @@ specifies in the mode line."
   :global t :group 'auto-revert :lighter global-auto-revert-mode-text
   (auto-revert-set-timer)
   (if global-auto-revert-mode
-      (auto-revert-buffers)
+      (progn
+        ;; We disable file notification because it could use too many
+        ;; ressources.  See <http://debbugs.gnu.org/22814>.
+        (setq auto-revert-use-notify nil)
+        (auto-revert-buffers))
     (dolist (buf (buffer-list))
       (with-current-buffer buf
        (when auto-revert-use-notify