mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-24 07:20:37 +00:00
(x-handle-geometry): Put sizes on `initial-frame-alist' too.
This commit is contained in:
parent
7f944e8e3c
commit
0ebcabe744
@ -1,5 +1,11 @@
|
||||
2003-03-05 Juanma Barranquero <lektu@terra.es>
|
||||
|
||||
* term/w32-win.el (x-handle-geometry): Put sizes on
|
||||
`initial-frame-alist' too.
|
||||
|
||||
* startup.el (command-line-x-option-alist): Make --border-color set
|
||||
the border-color frame parameter, not border-width.
|
||||
|
||||
* faces.el (frame-set-background-mode): Fix reference to attribute
|
||||
"backgroundMode".
|
||||
|
||||
|
@ -204,6 +204,11 @@ the last file dropped is selected."
|
||||
(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…
Reference in New Issue
Block a user