From bd38a99868eadd096847536ae8ba3016f14463e0 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Mon, 3 Jul 2000 07:49:30 +0000 Subject: [PATCH] (hilit-lookup-face-create): Don't set face colors to nil. --- lisp/hilit19.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/hilit19.el b/lisp/hilit19.el index cd192143809..a324de3b1bf 100644 --- a/lisp/hilit19.el +++ b/lisp/hilit19.el @@ -622,8 +622,8 @@ See the documentation for hilit-translate and hilit-face-translation-table." ;; catch errors if we can't allocate the color(s) (condition-case nil - (progn (set-face-foreground 'scratch-face fgcolor) - (set-face-background 'scratch-face bgcolor) + (progn (and fgcolor (set-face-foreground 'scratch-face fgcolor)) + (and bgcolor (set-face-background 'scratch-face bgcolor)) (copy-face 'scratch-face face) (put face 'basefont basefont)) (error (message "couldn't allocate color for '%s'" @@ -635,7 +635,7 @@ See the documentation for hilit-translate and hilit-face-translation-table." ;; we wanted, but ignore errors making the face bold or italic ;; if the font isn't available, there's nothing to do about it... (progn - (set-face-font face nil frame) + (set-face-font face basefont frame) (set-face-underline-p face (string-match "underline" fn)) (if (string-match ".*bold" fn) ;; make face bold in all frames -- 2.39.2