diff options
author | Jason Rumney <jasonr@gnu.org> | 2009-01-13 12:41:34 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2009-01-13 12:41:34 +0000 |
commit | 0db2e6afa394272e3b33bae713eab0b9bdefc974 (patch) | |
tree | 2687ee7ee7aada8f0cbf5c0d9c8def4fd590a504 /lisp/faces.el | |
parent | ac20fddfece88e10a19311ea122d542f994427c6 (diff) | |
download | emacs-0db2e6afa394272e3b33bae713eab0b9bdefc974.tar.gz |
(face-valid-attribute-values): No stipple on w32. (Bug#884)
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index d1a716994eb..522446add15 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -1020,7 +1020,7 @@ an integer value." ((:height) 'integerp) (:stipple - (and (memq (window-system frame) '(x w32 ns)) + (and (memq (window-system frame) '(x ns)) ; No stipple on w32 (mapcar #'list (apply #'nconc (mapcar (lambda (dir) |