1
0
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:
Juanma Barranquero 2003-03-05 16:33:42 +00:00
parent 7f944e8e3c
commit 0ebcabe744
2 changed files with 11 additions and 0 deletions

View File

@ -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".

View File

@ -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)))))