diff options
author | Glenn Morris <rgm@gnu.org> | 2007-11-27 03:57:54 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-11-27 03:57:54 +0000 |
commit | c88af7493e37c28eeaae26112116194d085cc61f (patch) | |
tree | 6e8b3b0a15246cec4a6c01cc3621e2720dc80438 /lisp/ediff-diff.el | |
parent | e637bdf8633aa842af56ccaf81edd29f8bd9a48a (diff) | |
download | emacs-c88af7493e37c28eeaae26112116194d085cc61f.tar.gz |
Load ediff-*.el files silently.
Diffstat (limited to 'lisp/ediff-diff.el')
-rw-r--r-- | lisp/ediff-diff.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ediff-diff.el b/lisp/ediff-diff.el index 06d7b603440..a835fb8e750 100644 --- a/lisp/ediff-diff.el +++ b/lisp/ediff-diff.el @@ -35,9 +35,9 @@ (eval-when-compile (let ((load-path (cons (expand-file-name ".") load-path))) (or (featurep 'ediff-init) - (load "ediff-init.el" nil nil 'nosuffix)) + (load "ediff-init.el" nil t 'nosuffix)) (or (featurep 'ediff-util) - (load "ediff-util.el" nil nil 'nosuffix)) + (load "ediff-util.el" nil t 'nosuffix)) )) ;; end pacifier |