diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-01-24 19:20:21 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-01-24 19:20:21 +0000 |
commit | bfabe8828eeaf438f36a1f4eb2d861b53f66eb2a (patch) | |
tree | 456ff859c9863842bcfb6486f0637b04de4deb57 /lisp/term | |
parent | 82d3d6946e36f62c3db92530f6ff8a71514af442 (diff) | |
download | emacs-bfabe8828eeaf438f36a1f4eb2d861b53f66eb2a.tar.gz |
(x-handle-geometry): Put sizes on both
initial-frame-alist and default-frame-alist.
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/x-win.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index 1307376779c..c4dead52f8f 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el @@ -153,6 +153,11 @@ (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 |