diff options
author | Michael Kifer <kifer@cs.stonybrook.edu> | 2005-11-25 07:29:10 +0000 |
---|---|---|
committer | Michael Kifer <kifer@cs.stonybrook.edu> | 2005-11-25 07:29:10 +0000 |
commit | 9b01475db997eecd372331bad33cea82966780b4 (patch) | |
tree | 596a018f30bc76789da2f9cf050298ddc78910f4 /lisp/ediff-wind.el | |
parent | 0680ea10b45687dd50abf36a540b2eb3c098c855 (diff) | |
download | emacs-9b01475db997eecd372331bad33cea82966780b4.tar.gz |
2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
* ediff-wind (ediff-make-wide-display): Slight simplification.
* ediff.el (ediff-date): Changed the date of last update.
Diffstat (limited to 'lisp/ediff-wind.el')
-rw-r--r-- | lisp/ediff-wind.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/ediff-wind.el b/lisp/ediff-wind.el index e15c92d4bc9..1a360a28f6e 100644 --- a/lisp/ediff-wind.el +++ b/lisp/ediff-wind.el @@ -1135,9 +1135,7 @@ It assumes that it is called from within the control buffer." (list (cons 'left (max 0 (eval (cdr (assoc 'left frame-A-params))))) (cons 'width (cdr (assoc 'width frame-A-params)))) ediff-wide-display-frame frame-A) - (modify-frame-parameters frame-A (list (cons 'left cw) - (cons 'width wd))))) - + (modify-frame-parameters frame-A `((left . ,cw) (width . ,wd))))) ;; Revise the mode line to display which difference we have selected |