diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2003-03-05 16:33:42 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2003-03-05 16:33:42 +0000 |
commit | 0ebcabe7441957535dd9e5e947df7478bcf63224 (patch) | |
tree | d7bb887107d98175ff1ce68f262a49db136dc5a7 /lisp/term | |
parent | 7f944e8e3ca22742c361c0a8021e847bd4f76460 (diff) | |
download | emacs-0ebcabe7441957535dd9e5e947df7478bcf63224.tar.gz |
(x-handle-geometry): Put sizes on `initial-frame-alist' too.
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/w32-win.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el index 7f39eaab5db..565f9a6b5b5 100644 --- a/lisp/term/w32-win.el +++ b/lisp/term/w32-win.el @@ -206,6 +206,11 @@ the last file dropped is selected." (append default-frame-alist '((user-size . t)) (if height (list height)) + (if width (list width))) + initial-frame-alist + (append initial-frame-alist + '((user-size . t)) + (if height (list height)) (if width (list width))))) (if (or left top) (setq initial-frame-alist |