aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-11-27 04:02:18 +0000
committerGlenn Morris2007-11-27 04:02:18 +0000
commit8e2075ea10b4ef17b4bcd62665638d965cba63a8 (patch)
tree978df3d3dcdf8ec478f163f6b410c34103e03215
parent05fed923d3960dddbdbf3385232101e5ba95451c (diff)
downloademacs-8e2075ea10b4ef17b4bcd62665638d965cba63a8.tar.gz
emacs-8e2075ea10b4ef17b4bcd62665638d965cba63a8.zip
Load ediff-*.el files silently.
(ediff-display-pixel-width, ediff-display-pixel-height): Declare as functions.
-rw-r--r--lisp/ediff-wind.el10
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 @@
43(eval-when-compile 43(eval-when-compile
44 (let ((load-path (cons (expand-file-name ".") load-path))) 44 (let ((load-path (cons (expand-file-name ".") load-path)))
45 (or (featurep 'ediff-init) 45 (or (featurep 'ediff-init)
46 (load "ediff-init.el" nil nil 'nosuffix)) 46 (load "ediff-init.el" nil t 'nosuffix))
47 (or (featurep 'ediff-util) 47 (or (featurep 'ediff-util)
48 (load "ediff-util.el" nil nil 'nosuffix)) 48 (load "ediff-util.el" nil t 'nosuffix))
49 (or (featurep 'ediff-help) 49 (or (featurep 'ediff-help)
50 (load "ediff-help.el" nil nil 'nosuffix)) 50 (load "ediff-help.el" nil t 'nosuffix))
51 (or (featurep 'ediff-tbar) 51 (or (featurep 'ediff-tbar)
52 (featurep 'emacs) 52 (featurep 'emacs)
53 (load "ediff-tbar.el" 'noerror nil 'nosuffix)) 53 (load "ediff-tbar.el" 'noerror nil 'nosuffix))
@@ -147,6 +147,10 @@ In this case, Ediff will use those frames to display these buffers."
147 :type 'function 147 :type 'function
148 :group 'ediff-window) 148 :group 'ediff-window)
149 149
150;; Definitions hidden from the compiler by compat wrappers.
151(declare-function ediff-display-pixel-width "ediff-init")
152(declare-function ediff-display-pixel-height "ediff-init")
153
150(defconst ediff-control-frame-parameters 154(defconst ediff-control-frame-parameters
151 (list 155 (list
152 '(name . "Ediff") 156 '(name . "Ediff")