diff options
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 |