(Emacs/elisp)~Fix this annoying C stack overflow error due to theme

Happens in rainbow-delimiters, as I setup weird inheritance when the
package enforces an inheritance of the faces already.
This commit is contained in:
2024-06-30 00:37:21 +01:00
parent 7c1279d795
commit c33474496b

View File

@@ -76,8 +76,8 @@
'(rainbow-delimiters-depth-6-face ((t (:extend t :foreground "purple"))))
'(rainbow-delimiters-depth-7-face ((t (:extend t :foreground "violet"))))
'(rainbow-delimiters-mismatched-face ((t (:extend t :foreground "white" :background "red1"))))
'(rainbow-delimiters-unmatched-face ((t (:inherit rainbow-delimiters-mismatched-face))))
'(rainbow-delimiters-base-error-face ((t (:inherit rainbow-delimiters-mismatched-face))))
'(rainbow-delimiters-unmatched-face ((t (:extend t :foreground "white" :background "red1"))))
'(rainbow-delimiters-base-error-face ((t (:extend t :foreground "white" :background "red1"))))
'(shadow ((((class color grayscale) (min-colors 88) (background light)) (:foreground "grey50"))
(((class color grayscale) (min-colors 88) (background dark)) (:foreground "grey70"))
(((class color) (min-colors 8) (background light)) (:foreground "green"))