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:
parent
82d3d6946e
commit
bfabe8828e
2 changed files with 8 additions and 0 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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)))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue