summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-10-23 01:05:26 +0000
committerRichard M. Stallman <rms@gnu.org>1994-10-23 01:05:26 +0000
commit5c22a4571686e14e52036ccad13c48b89ec3e80d (patch)
tree6099d0329fc2d98544c58a23a1db571b8123aefc
parent8e54c0789a08c4805fe01e1265fd1d62483025a6 (diff)
downloademacs-5c22a4571686e14e52036ccad13c48b89ec3e80d.tar.gz
(set-face-background): If color is gray, and frame
can't display that directly, use corresponding stipple. (face-try-color-list): Assume gray colors are valid on any display.
-rw-r--r--lisp/faces.el15
1 files changed, 10 insertions, 5 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index e6e56f55647..675e2b54387 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -109,6 +109,10 @@ in that frame; otherwise change each frame."
If the optional FRAME argument is provided, change only
in that frame; otherwise change each frame."
(interactive (internal-face-interactive "background"))
+ (if (and frame (member color '("gray" "gray1" "gray3"))
+ (not (x-display-color-p frame))
+ (not (x-display-grayscale-p frame)))
+ (set-face-stipple face color frame))
(internal-set-face-1 face 'background color 5 frame))
(defsubst set-face-stipple (face name &optional frame)
@@ -966,8 +970,9 @@ selected frame."
;; That can't fail, so any subsequent elements after the t are ignored.
(defun face-try-color-list (function face colors frame)
(if (stringp colors)
- (if (or (and (not (x-display-color-p)) (not (string= colors "gray")))
- (= (x-display-planes) 1))
+ (if (and (not (member colors '("gray" "gray1" "gray3")))
+ (or (not (x-display-color-p))
+ (= (x-display-planes) 1)))
nil
(funcall function face colors frame))
(if (eq colors t)
@@ -975,9 +980,9 @@ selected frame."
(let (done)
(while (and colors (not done))
(if (and (stringp (car colors))
- (or (and (not (x-display-color-p))
- (not (string= (car colors) "gray")))
- (= (x-display-planes) 1)))
+ (and (not (member (car colors) '("gray" "gray1" "gray3")))
+ (or (not (x-display-color-p))
+ (= (x-display-planes) 1))))
nil
(if (cdr colors)
;; If there are more colors to try, catch errors