From c33474496bcae8a029bd630171153c4793aba81b Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sun, 30 Jun 2024 00:37:21 +0100 Subject: (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. --- Emacs/.config/emacs/elisp/personal-primary-theme.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Emacs/.config/emacs/elisp/personal-primary-theme.el') diff --git a/Emacs/.config/emacs/elisp/personal-primary-theme.el b/Emacs/.config/emacs/elisp/personal-primary-theme.el index 47734de..97b0b3e 100644 --- a/Emacs/.config/emacs/elisp/personal-primary-theme.el +++ b/Emacs/.config/emacs/elisp/personal-primary-theme.el @@ -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")) -- cgit v1.2.3-13-gbd6f