+2008-12-22 Richard M Stallman <rms@gnu.org>
+
+ * dired.el (dired-readin): Inhibit modification hooks.
+
2008-12-22 Ulf Jasper <ulf.jasper@web.de>
* net/newst-backend.el (newst-backend): Removed wrong duplicate provide statement.
;; default-directory and dired-actual-switches must be buffer-local
;; and initialized by now.
- (let (dirname)
+ (let (dirname
+ ;; This makes readin much much faster.
+ ;; In particular, it prevents the font lock hook from running
+ ;; until the directory is all read in.
+ (inhibit-modification-hooks t))
(if (consp dired-directory)
(setq dirname (car dired-directory))
(setq dirname dired-directory))