Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
21862425
Commit
21862425
authored
Jun 17, 2005
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(underline): Try bold if terminal doesn't support underline.
parent
043f95ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
lisp/faces.el
lisp/faces.el
+5
-1
No files found.
lisp/faces.el
View file @
21862425
...
...
@@ -2035,7 +2035,11 @@ Note: Other faces cannot inherit from the cursor face."
:group
'basic-faces
)
(
defface
underline
'
((
t
:underline
t
))
(
defface
underline
'
((((
supports
:underline
t
))
:underline
t
)
(((
supports
:weight
bold
))
:weight
bold
)
(
t
:underline
t
))
"Basic underlined face."
:group
'basic-faces
)
...
...
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