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
66de157d
Commit
66de157d
authored
Apr 18, 1995
by
Richard M. Stallman
Browse files
(frame-notice-user-settings):
Don't respecify an old value which was nil and remains nil.
parent
3453f0b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lisp/frame.el
lisp/frame.el
+3
-3
No files found.
lisp/frame.el
View file @
66de157d
...
...
@@ -344,10 +344,10 @@ These supersede the values given in `default-frame-alist'.")
;; manually.
(
while
tail
(
let
(
newval
oldval
)
(
setq
oldval
(
cdr
(
assq
(
car
(
car
tail
))
frame-initial-frame-alist
))
)
(
setq
oldval
(
assq
(
car
(
car
tail
))
frame-initial-frame-alist
))
(
setq
newval
(
cdr
(
assq
(
car
(
car
tail
))
allparms
)))
(
or
(
eq
oldval
newval
)
(
or
(
and
oldval
(
eq
(
cdr
oldval
)
newval
)
)
(
setq
newparms
(
cons
(
cons
(
car
(
car
tail
))
newval
)
newparms
))))
(
setq
tail
(
cdr
tail
)))
...
...
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