aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii1999-08-15 11:52:16 +0000
committerEli Zaretskii1999-08-15 11:52:16 +0000
commitf3625fc03493ac40350ba45fc57c72f35ca86cf7 (patch)
tree74d6cd0ff5564224dfe87d522e77795a8a12b5a0
parentc0e2e77f8fff19c9b314806fcdd660f792f210fd (diff)
downloademacs-f3625fc03493ac40350ba45fc57c72f35ca86cf7.tar.gz
emacs-f3625fc03493ac40350ba45fc57c72f35ca86cf7.zip
(face-valid-attribute-values): Look in
x-bitmap-file-path only for x and w32 window systems.
-rw-r--r--lisp/faces.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index 8ed46f6e876..57cb19b6e18 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -747,7 +747,7 @@ an integer value."
747 ((:height) 747 ((:height)
748 'integerp) 748 'integerp)
749 (:stipple 749 (:stipple
750 (and window-system 750 (and (memq window-system '(x w32))
751 (mapcar #'list 751 (mapcar #'list
752 (apply #'nconc (mapcar #'directory-files 752 (apply #'nconc (mapcar #'directory-files
753 x-bitmap-file-path))))) 753 x-bitmap-file-path)))))