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
7ced34de
Commit
7ced34de
authored
Sep 05, 2008
by
Eli Zaretskii
Browse files
(msdos-face-setup): Setup faces for all frames, not just for terminal-frame.
parent
e271d38e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
10 deletions
+15
-10
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/term/pc-win.el
lisp/term/pc-win.el
+10
-10
No files found.
lisp/ChangeLog
View file @
7ced34de
2008-09-05 Eli Zaretskii <eliz@gnu.org>
* term/pc-win.el (msdos-face-setup): Setup faces for all frames,
not just for terminal-frame.
2008-09-05 Martin Rudalics <rudalics@gmx.at>
* window.el (window--try-to-split-window): Don't split when window
...
...
lisp/term/pc-win.el
View file @
7ced34de
...
...
@@ -86,20 +86,20 @@
;(modify-frame-parameters terminal-frame default-frame-alist)
(
defun
msdos-face-setup
()
"
Set up initial
faces for the MS-DOS display."
(
set-face-foreground
'bold
"yellow"
terminal-frame
)
(
set-face-foreground
'italic
"red"
terminal-frame
)
(
set-face-foreground
'bold-italic
"lightred"
terminal-frame
)
(
set-face-foreground
'underline
"white"
terminal-frame
)
"
Initial setup of
faces for the MS-DOS display."
(
set-face-foreground
'bold
"yellow"
)
(
set-face-foreground
'italic
"red"
)
(
set-face-foreground
'bold-italic
"lightred"
)
(
set-face-foreground
'underline
"white"
)
(
make-face
'msdos-menu-active-face
)
(
make-face
'msdos-menu-passive-face
)
(
make-face
'msdos-menu-select-face
)
(
set-face-foreground
'msdos-menu-active-face
"white"
terminal-frame
)
(
set-face-foreground
'msdos-menu-passive-face
"lightgray"
terminal-frame
)
(
set-face-background
'msdos-menu-active-face
"blue"
terminal-frame
)
(
set-face-background
'msdos-menu-passive-face
"blue"
terminal-frame
)
(
set-face-background
'msdos-menu-select-face
"red"
terminal-frame
))
(
set-face-foreground
'msdos-menu-active-face
"white"
)
(
set-face-foreground
'msdos-menu-passive-face
"lightgray"
)
(
set-face-background
'msdos-menu-active-face
"blue"
)
(
set-face-background
'msdos-menu-passive-face
"blue"
)
(
set-face-background
'msdos-menu-select-face
"red"
))
(
defun
msdos-handle-reverse-video
(
frame
parameters
)
"Handle the reverse-video frame parameter on MS-DOS frames."
...
...
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