From bfabe8828eeaf438f36a1f4eb2d861b53f66eb2a Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 24 Jan 2002 19:20:21 +0000 Subject: [PATCH] (x-handle-geometry): Put sizes on both initial-frame-alist and default-frame-alist. --- lisp/ChangeLog | 3 +++ lisp/term/x-win.el | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d72c30116f7..abc3a6a3a22 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2002-01-24 Richard M. Stallman + * 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. diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index 1307376779c..c4dead52f8f 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el @@ -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))))) -- 2.39.2