1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(x-handle-geometry): Put sizes on both

initial-frame-alist and default-frame-alist.
This commit is contained in:
Richard M. Stallman 2002-01-24 19:20:21 +00:00
parent 82d3d6946e
commit bfabe8828e
2 changed files with 8 additions and 0 deletions

View file

@ -1,5 +1,8 @@
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.

View file

@ -151,6 +151,11 @@
(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)))))