aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/term/x-win.el5
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d72c30116f7..abc3a6a3a22 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12002-01-24 Richard M. Stallman <rms@gnu.org> 12002-01-24 Richard M. Stallman <rms@gnu.org>
2 2
3 * term/x-win.el (x-handle-geometry): Put sizes on both
4 initial-frame-alist and default-frame-alist.
5
3 * cus-edit.el (custom-save-all): Bind file-precious-flag to t 6 * cus-edit.el (custom-save-all): Bind file-precious-flag to t
4 for saving .emacs. 7 for saving .emacs.
5 8
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
@@ -153,6 +153,11 @@
153 (append default-frame-alist 153 (append default-frame-alist
154 '((user-size . t)) 154 '((user-size . t))
155 (if height (list height)) 155 (if height (list height))
156 (if width (list width)))
157 initial-frame-alist
158 (append initial-frame-alist
159 '((user-size . t))
160 (if height (list height))
156 (if width (list width))))) 161 (if width (list width)))))
157 (if (or left top) 162 (if (or left top)
158 (setq initial-frame-alist 163 (setq initial-frame-alist