Fix bootstrap issue with dired-loaddefs

* lisp/dired.el: Autoloads for secondary files loaded optionally.
This commit is contained in:
Phillip Lord 2015-12-18 21:19:35 +00:00
parent 2f55a230d7
commit 138480a97b

View file

@ -33,7 +33,9 @@
;; Finished up by rms in 1992.
;;; Code:
(require 'dired-loaddefs)
;; When bootstrapping dired-loaddefs has not been generated.
(require 'dired-loaddefs nil t)
(declare-function dired-buffer-more-recently-used-p
"dired-x" (buffer1 buffer2))