From 6dfe3ed0eaf6111e0776ca8df2a2a135155f61e5 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Fri, 3 Oct 2025 15:50:32 +0100 Subject: Fix fringe face background warning message --- emacs-config.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'emacs-config.org') diff --git a/emacs-config.org b/emacs-config.org index f646691..2bf6c1e 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -130,7 +130,7 @@ Fix elisp prop indentation. Enable theme. #+begin_src elisp (load-theme 'modus-vivendi) - (set-face-attribute 'fringe nil :background "unspecified-bg") + (set-face-attribute 'fringe nil :background 'unspecified) #+end_src Fix fringe background colour. @@ -138,7 +138,7 @@ Fix fringe background colour. (add-hook 'modus-themes-after-load-theme-hook (lambda () "Hide fringe background on theme toggle." (set-face-attribute 'fringe nil - :background "unspecified-bg"))) + :background 'unspecified))) #+end_src ** Font -- cgit