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
4b33f290
Commit
4b33f290
authored
Oct 11, 2000
by
Miles Bader
Browse files
(frame-set-background-mode):
Pay attention to saved face specs as well as default ones.
parent
df3c11b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/faces.el
lisp/faces.el
+2
-2
No files found.
lisp/ChangeLog
View file @
4b33f290
2000-10-11 Miles Bader <miles@lsi.nec.co.jp>
* faces.el (frame-set-background-mode): Pay attention to saved
face specs as well as default ones.
2000-10-10 Sam Steingold <sds@gnu.org>
* chistory.el, ielm.el, ledit.el:
...
...
lisp/faces.el
View file @
4b33f290
...
...
@@ -1339,13 +1339,13 @@ this won't have the expected effect."
(
let
((
face-list
(
face-list
)))
(
while
face-list
(
let*
((
face
(
car
face-list
))
(
spec
(
get
face
'face-defface-spec
)))
(
spec
(
or
(
get
face
'saved-face
)
(
get
face
'face-defface-spec
))))
(
when
spec
(
face-spec-set
face
spec
frame
))
(
setq
face-list
(
cdr
face-list
))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Frame creation.
...
...
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