Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
11281034
Commit
11281034
authored
Jun 02, 1993
by
Richard M. Stallman
Browse files
(frame-initialize): Delete geometry parms from initial-frame-alist.
parent
20a82895
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
lisp/frame.el
lisp/frame.el
+10
-0
No files found.
lisp/frame.el
View file @
11281034
...
...
@@ -98,6 +98,16 @@ These supercede the values given in `default-frame-alist'.")
(
setq
default-minibuffer-frame
(
setq
frame-initial-frame
(
new-frame
initial-frame-alist
)))
;; Delete any specifications for window geometry parameters
;; so that we won't reapply them in frame-notice-user-settings.
;; It would be wrong to reapply them then,
;; because that would override explicit user resizing.
(
setq
initial-frame-alist
(
delq
(
assq
'height
initial-frame-alist
)
(
delq
(
assq
'width
initial-frame-alist
)
(
delq
(
assq
'left
initial-frame-alist
)
(
delq
(
assq
'top
initial-frame-alist
)
initial-frame-alist
)))))
;; Handle `reverse' as a parameter.
(
if
(
cdr
(
or
(
assq
'reverse
initial-frame-alist
)
(
assq
'reverse
default-frame-alist
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment