>>>>> In <[EMAIL PROTECTED]> >>>>> Tatsuya Kinoshita <[EMAIL PROTECTED]> wrote:
> I don't know for certain, but (nil) works fine: > > (defface test-face-3 > '((t (:background "Yellow"))) > "test face 1" > :group 'test) > (custom-set-faces > '(test-face-3 ((t (nil))))) > (face-background 'test-face-3) => nil Eval only the following: (defface test-face-3 '((t (:background "Yellow"))) "test face 1" :group 'test) (face-background 'test-face-3) Probably you can't get the result "Yellow". -- OHASHI Akira [EMAIL PROTECTED] [EMAIL PROTECTED] Share what you know. Learn what you don't.

