diff options
| author | Richard M. Stallman | 2002-01-24 19:20:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-01-24 19:20:21 +0000 |
| commit | bfabe8828eeaf438f36a1f4eb2d861b53f66eb2a (patch) | |
| tree | 456ff859c9863842bcfb6486f0637b04de4deb57 | |
| parent | 82d3d6946e36f62c3db92530f6ff8a71514af442 (diff) | |
| download | emacs-bfabe8828eeaf438f36a1f4eb2d861b53f66eb2a.tar.gz emacs-bfabe8828eeaf438f36a1f4eb2d861b53f66eb2a.zip | |
(x-handle-geometry): Put sizes on both
initial-frame-alist and default-frame-alist.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/term/x-win.el | 5 |
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 @@ | |||
| 1 | 2002-01-24 Richard M. Stallman <rms@gnu.org> | 1 | 2002-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 |