]> git.eshelyaron.com Git - emacs.git/commitdiff
(enriched-decode-foreground): Use display-color-p.
authorDave Love <fx@gnu.org>
Sun, 12 Mar 2000 15:25:35 +0000 (15:25 +0000)
committerDave Love <fx@gnu.org>
Sun, 12 Mar 2000 15:25:35 +0000 (15:25 +0000)
(enriched-decode-background): Likewise.

lisp/enriched.el

index a7f3ad6cdf592a60e95a6ed2bfd03208de828a5b..08c0cec89557b85e1ecbb6ded2f903872a9fa8fe 100644 (file)
@@ -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)))