]> git.eshelyaron.com Git - emacs.git/commitdiff
(x-handle-geometry): Put sizes on `initial-frame-alist' too.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 5 Mar 2003 16:33:42 +0000 (16:33 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 5 Mar 2003 16:33:42 +0000 (16:33 +0000)
lisp/ChangeLog
lisp/term/w32-win.el

index c7b3ff9f4663083ea60e9e44c86f2d035e881a46..d949e91ee8b2bd78c1e4c9e3f48905c5c7f9d530 100644 (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".
 
index 7f39eaab5dbdefbf33506a4a407accee4f79c6fb..565f9a6b5b57e992431a251880f710da266445e2 100644 (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)))))