diff options
author | Glenn Morris <rgm@gnu.org> | 2007-11-27 04:02:18 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-11-27 04:02:18 +0000 |
commit | 8e2075ea10b4ef17b4bcd62665638d965cba63a8 (patch) | |
tree | 978df3d3dcdf8ec478f163f6b410c34103e03215 /lisp/ediff-wind.el | |
parent | 05fed923d3960dddbdbf3385232101e5ba95451c (diff) | |
download | emacs-8e2075ea10b4ef17b4bcd62665638d965cba63a8.tar.gz emacs-8e2075ea10b4ef17b4bcd62665638d965cba63a8.tar.bz2 emacs-8e2075ea10b4ef17b4bcd62665638d965cba63a8.zip |
Load ediff-*.el files silently.
(ediff-display-pixel-width, ediff-display-pixel-height): Declare as functions.
Diffstat (limited to 'lisp/ediff-wind.el')
-rw-r--r-- | lisp/ediff-wind.el | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ediff-wind.el b/lisp/ediff-wind.el index 4efae0c0519..e13d89ac6eb 100644 --- a/lisp/ediff-wind.el +++ b/lisp/ediff-wind.el @@ -43,11 +43,11 @@ (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)) (or (featurep 'ediff-help) - (load "ediff-help.el" nil nil 'nosuffix)) + (load "ediff-help.el" nil t 'nosuffix)) (or (featurep 'ediff-tbar) (featurep 'emacs) (load "ediff-tbar.el" 'noerror nil 'nosuffix)) @@ -147,6 +147,10 @@ In this case, Ediff will use those frames to display these buffers." :type 'function :group 'ediff-window) +;; Definitions hidden from the compiler by compat wrappers. +(declare-function ediff-display-pixel-width "ediff-init") +(declare-function ediff-display-pixel-height "ediff-init") + (defconst ediff-control-frame-parameters (list '(name . "Ediff") |