diff options
author | Richard M. Stallman <rms@gnu.org> | 2007-12-23 19:13:48 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2007-12-23 19:13:48 +0000 |
commit | 86f795fdc8d8dc749820d970037b111cbcde5cb8 (patch) | |
tree | 801460a87df6b034e5b1205712330036bb3e31c5 /lisp | |
parent | 341a1bfb331089c1a78dfde7ed139918bb2880f0 (diff) | |
download | emacs-86f795fdc8d8dc749820d970037b111cbcde5cb8.tar.gz emacs-86f795fdc8d8dc749820d970037b111cbcde5cb8.tar.bz2 emacs-86f795fdc8d8dc749820d970037b111cbcde5cb8.zip |
Load dired.el at run time too.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 2 | ||||
-rw-r--r-- | lisp/dired-aux.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f9fc2226269..6214d715b37 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2007-12-23 Richard Stallman <rms@gnu.org> + * dired-aux.el: Load dired.el at run time too. + * faces.el (copy-face): Create the new face explicitly if it does not exist already. diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index 8d0f184eb7c..e56b9e44a3a 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -37,7 +37,7 @@ ;;; Code: ;; We need macros in dired.el to compile properly. -(eval-when-compile (require 'dired)) +(require 'dired) (defvar dired-create-files-failures nil "Variable where `dired-create-files' records failing file names. |