diff options
author | Per Abrahamsen <abraham@dina.kvl.dk> | 1997-08-11 22:28:10 +0000 |
---|---|---|
committer | Per Abrahamsen <abraham@dina.kvl.dk> | 1997-08-11 22:28:10 +0000 |
commit | 19823ce3b10f7fca48baeaa8b617582bd140ebd7 (patch) | |
tree | a3a98e335ff1474dba249c19ac1540e6eba2ebe5 /lisp/cus-face.el | |
parent | e76df57d13a045dc55a18e4b71d9d98d6dcf233e (diff) | |
download | emacs-19823ce3b10f7fca48baeaa8b617582bd140ebd7.tar.gz |
(custom-face-attributes): Don't initialize fg/bg fields.
Diffstat (limited to 'lisp/cus-face.el')
-rw-r--r-- | lisp/cus-face.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cus-face.el b/lisp/cus-face.el index de51b6a2973..edfd450162a 100644 --- a/lisp/cus-face.el +++ b/lisp/cus-face.el @@ -86,12 +86,12 @@ Control whether the text should be in inverse video.") set-face-inverse-video-p face-inverse-video-p) (:foreground (color :tag "Foreground" - :value "black" + :value "" :help-echo "Set foreground color.") set-face-foreground face-foreground) (:background (color :tag "Background" - :value "white" + :value "" :help-echo "Set background color.") set-face-background face-background) |