** 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
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
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
: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