initial-frame-alist and default-frame-alist.
2002-01-24 Richard M. Stallman <rms@gnu.org>
+ * term/x-win.el (x-handle-geometry): Put sizes on both
+ initial-frame-alist and default-frame-alist.
+
* cus-edit.el (custom-save-all): Bind file-precious-flag to t
for saving .emacs.
(if (or height width)
(setq default-frame-alist
(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)))))