branch: externals/ebdb commit fea7c5ee5dd88bd41775c6278d4e7a063ee8f2d2 Author: Eric Abrahamsen <e...@ericabrahamsen.net> Commit: Eric Abrahamsen <e...@ericabrahamsen.net>
Fix font inheritance of mail addresses * ebdb-com.el (ebdb-mail-defunct, ebdb-mail-primary): Had the inheritance order reversed. --- ebdb-com.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ebdb-com.el b/ebdb-com.el index 7688b01..95a4125 100644 --- a/ebdb-com.el +++ b/ebdb-com.el @@ -156,12 +156,12 @@ Faces are used to font-lock their names in the *EBDB* buffer." :group 'ebdb-faces) (defface ebdb-mail-defunct - '((t :inherit ebdb-mail-default ebdb-defunct)) + '((t :inherit ebdb-defunct ebdb-mail-default)) "Face used to display a defunct mail address." :group 'ebdb-faces) (defface ebdb-mail-primary - '((t (:inherit ebdb-mail-default font-lock-builtin-face))) + '((t (:inherit font-lock-builtin-face ebdb-mail-default))) "Face used to display a record's primary mail address." :group 'ebdb-faces)