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
333cd59e
Commit
333cd59e
authored
Oct 17, 2000
by
Eli Zaretskii
Browse files
(Info-title-1-face, Info-title-2-face, Info-title-3-face): Define
colors for tty's.
parent
7dd2a2b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/info.el
lisp/info.el
+6
-3
No files found.
lisp/ChangeLog
View file @
333cd59e
2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
* info.el (Info-title-1-face, Info-title-2-face)
(Info-title-3-face): Define colors for tty's.
2000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
* term/pc-win.el (msdos-handle-reverse-video): Don't remove
...
...
lisp/info.el
View file @
333cd59e
...
...
@@ -2364,17 +2364,20 @@ the variable `Info-file-list-for-emacs'."
(
Info-goto-emacs-command-node
command
)))))
(
defface
Info-title-1-face
'
((
t
(
:height
1.2
:inherit
Info-title-2-face
)))
'
((((
type
tty
pc
)
(
class
color
))
(
:foreground
"lightred"
:weight
bold
))
(
t
(
:height
1.2
:inherit
Info-title-2-face
)))
"Face for Info titles at level 1."
:group
'info
)
(
defface
Info-title-2-face
'
((
t
(
:height
1.2
:inherit
Info-title-3-face
)))
'
((((
type
tty
pc
)
(
class
color
))
(
:foreground
"yellow"
:weight
bold
))
(
t
(
:height
1.2
:inherit
Info-title-3-face
)))
"Face for Info titles at level 2."
:group
'info
)
(
defface
Info-title-3-face
'
((
t
(
:height
1.2
:weight
bold
:inherit
variable-pitch
)))
'
((((
type
tty
pc
)
(
class
color
))
(
:foreground
"lightblue"
:weight
bold
))
(
t
(
:height
1.2
:weight
bold
:inherit
variable-pitch
)))
"Face for Info titles at level 3."
:group
'info
)
...
...
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