diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-04-16 03:50:30 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-04-16 03:50:30 +0000 |
commit | 23e41d152943b5d94170226b3d0c6f900cb96be0 (patch) | |
tree | e6fe1564d0ca00e43e96b896d3e8873624d40d4d /lisp/ediff-wind.el | |
parent | bd0af90dca595476bf4ce1ae88939ac75bd34aca (diff) | |
download | emacs-23e41d152943b5d94170226b3d0c6f900cb96be0.tar.gz |
* ediff-wind.el (ediff-make-wide-display): Fix typo in frame parameter
alist.
Diffstat (limited to 'lisp/ediff-wind.el')
-rw-r--r-- | lisp/ediff-wind.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ediff-wind.el b/lisp/ediff-wind.el index 708fb413d3e..d206184088c 100644 --- a/lisp/ediff-wind.el +++ b/lisp/ediff-wind.el @@ -1123,7 +1123,7 @@ It assumes that it is called from within the control buffer." (cons 'width (cdr (assoc 'width frame-A-params)))) ediff-wide-display-frame frame-A) (modify-frame-parameters - frame-A `((left . ,cw) (width . ,wd) (user-position t))))) + frame-A `((left . ,cw) (width . ,wd) (user-position . t))))) ;; Revise the mode line to display which difference we have selected |