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
a8bb5882
Commit
a8bb5882
authored
May 23, 1994
by
Richard M. Stallman
Browse files
(frame-initialize): Record in frame-initial-frame-alist
the actual settings of vertical-scroll-bars.
parent
d953b88c
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 @
a8bb5882
...
...
@@ -130,6 +130,16 @@ These supersede the values given in `default-frame-alist'.")
(
progn
(
setq
frame-initial-frame-alist
(
append
initial-frame-alist
default-frame-alist
))
;; Record these with their default values
;; if they don't have any values explicitly.
(
or
(
assq
'vertical-scroll-bars
frame-initial-frame-alist
)
(
setq
frame-initial-frame-alist
(
cons
'
(
vertical-scroll-bars
.
t
)
frame-initial-frame-alist
)))
(
or
(
assq
'horizontal-scroll-bars
frame-initial-frame-alist
)
(
setq
frame-initial-frame-alist
(
cons
'
(
horizontal-scroll-bars
.
t
)
frame-initial-frame-alist
)))
(
setq
default-minibuffer-frame
(
setq
frame-initial-frame
(
make-frame
initial-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