summaryrefslogtreecommitdiff
path: root/lisp/ediff-init.el
diff options
context:
space:
mode:
authorMichael Kifer <kifer@cs.stonybrook.edu>2002-10-12 07:13:59 +0000
committerMichael Kifer <kifer@cs.stonybrook.edu>2002-10-12 07:13:59 +0000
commit2e955a8b51cf21b6f5383ef77cd32d0d58fcabc1 (patch)
treef5f1b62b8cdf403e7781941617a26ae1fc4fafcd /lisp/ediff-init.el
parentd6da15ec7ba78a2c49f4fa4bc2de2d6aee379318 (diff)
downloademacs-2e955a8b51cf21b6f5383ef77cd32d0d58fcabc1.tar.gz
emacs-2e955a8b51cf21b6f5383ef77cd32d0d58fcabc1.tar.bz2
emacs-2e955a8b51cf21b6f5383ef77cd32d0d58fcabc1.zip
2002-10-12 Michael Kifer <kifer@cs.stonybrook.edu>
* ediff-init.el (ediff-frame-char-height): use frame-selected-window. * ediff-util.el (ediff-file-checked-in-p): changed progn with and * ediff-wind.el (ediff-skip-unsuitable-frames): distinguish selected frame from frame of selected window (ediff-frame-has-dedicated-windows): don't select any frames to avoid changing selected windows (ediff-setup-control-frame): make sure auto-rase is properly set for the control frame
Diffstat (limited to 'lisp/ediff-init.el')
-rw-r--r--lisp/ediff-init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ediff-init.el b/lisp/ediff-init.el
index 01c9b1e129a..58a37e2566d 100644
--- a/lisp/ediff-init.el
+++ b/lisp/ediff-init.el
@@ -1550,7 +1550,7 @@ This default should work without changes."
(defsubst ediff-frame-char-height (frame)
(ediff-cond-compile-for-xemacs-or-emacs
- (glyph-height ediff-H-glyph (selected-window frame)) ; xemacs cse
+ (glyph-height ediff-H-glyph (frame-selected-window frame)) ; xemacs case
(frame-char-height frame) ; emacs case
)
)