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
04c26901
Commit
04c26901
authored
Mar 12, 2000
by
Dave Love
Browse files
(enriched-decode-foreground): Use display-color-p.
(enriched-decode-background): Likewise.
parent
e1cff360
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/enriched.el
lisp/enriched.el
+2
-2
No files found.
lisp/enriched.el
View file @
04c26901
...
...
@@ -443,7 +443,7 @@ Return value is \(begin end name positive-p), or nil if none was found."
(
cond
((
null
color
)
(
message
"Warning: no color specified for <x-color>"
))
((
internal-find-face
face
))
((
and
window-system
(
facemenu-get-face
face
)))
((
and
(
display-color-p
)
(
facemenu-get-face
face
)))
((
make-face
face
)
(
message
"Warning: color `%s' can't be displayed"
color
)))
(
list
from
to
'face
face
)))
...
...
@@ -453,7 +453,7 @@ Return value is \(begin end name positive-p), or nil if none was found."
(
cond
((
null
color
)
(
message
"Warning: no color specified for <x-bg-color>"
))
((
internal-find-face
face
))
((
and
window-system
(
facemenu-get-face
face
)))
((
and
(
display-color-p
)
(
facemenu-get-face
face
)))
((
make-face
face
)
(
message
"Warning: color `%s' can't be displayed"
color
)))
(
list
from
to
'face
face
)))
...
...
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