Skip to content

Commit 53645a9

Browse files
committed
fix(base): gnus-group-news-low-empty: face inheritance cycle
By default, `gnus-group-news-low` inherits from `gnus-group-news-low-empty`. doom-themes tries to reverse this by inheriting `gnus-group-news-low-empty` from `gnu-group-news-low`, but before latter can be redefined, Emacs 31+ throws an cyclical face inheritance error, so swap the order that these faces are changed. Fix: #875
1 parent a0ec3c3 commit 53645a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doom-themes-base.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,8 +674,8 @@
674674
(gnus-group-news-6-empty :inherit 'gnus-group-news-1-empty)
675675
(gnus-group-mail-low :inherit 'gnus-group-mail-1 :weight 'normal)
676676
(gnus-group-mail-low-empty :inherit 'gnus-group-mail-1-empty)
677-
(gnus-group-news-low :inherit 'gnus-group-mail-1 :foreground base5)
678677
(gnus-group-news-low-empty :inherit 'gnus-group-news-low :weight 'normal)
678+
(gnus-group-news-low :inherit 'gnus-group-mail-1 :foreground base5)
679679
(gnus-header-content :inherit 'message-header-other)
680680
(gnus-header-from :inherit 'message-header-other)
681681
(gnus-header-name :inherit 'message-header-name)

0 commit comments

Comments
 (0)