summaryrefslogtreecommitdiff
path: root/lisp/cus-face.el
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>2000-11-25 02:56:16 +0000
committerMiles Bader <miles@gnu.org>2000-11-25 02:56:16 +0000
commit675f1fcb15f8b44aa26efedec8bc0b821ee62f3e (patch)
tree82eae50b0ff97b580581f686fec7c38eaaf9d423 /lisp/cus-face.el
parent8da6e2a1be0f612da18fb8e5426bf2194e6e59f3 (diff)
downloademacs-675f1fcb15f8b44aa26efedec8bc0b821ee62f3e.tar.gz
(custom-face-attributes): Add "None" choice to :stipple.
Diffstat (limited to 'lisp/cus-face.el')
-rw-r--r--lisp/cus-face.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/cus-face.el b/lisp/cus-face.el
index 62f5cb57a82..7c4930ff990 100644
--- a/lisp/cus-face.el
+++ b/lisp/cus-face.el
@@ -201,9 +201,12 @@
(:stipple
(choice :tag "Stipple"
- :help-echo "Name of background bitmap file."
+ :help-echo "Background bit-mask"
(const :tag "*" nil)
- (file :tag "File" :must-match t)))
+ (const :tag "None" off)
+ (file :tag "File"
+ :help-echo "Name of bitmap file."
+ :must-match t)))
(:inherit
(repeat :tag "Inherit"