From 65581530155b097fc314a19b2851a7dffcfd3790 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Thu, 3 Jul 2025 07:08:21 +0200 Subject: Fix warning on nil distant-foreground MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It actually is better to not define this than to provide a nil value, as GNU Emacs already takes its own default nil-like value. Signed-off-by: Miquel Sabaté Solà --- soria-theme.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'soria-theme.el') diff --git a/soria-theme.el b/soria-theme.el index 9a78aa7..6c4dd2b 100644 --- a/soria-theme.el +++ b/soria-theme.el @@ -274,13 +274,13 @@ The theme has to be reloaded after changing anything in this group." `(line-number ((,class (:inherit default - :foreground ,soria-gray :distant-foreground nil + :foreground ,soria-gray :background ,soria-darkgray :weight normal :italic nil :underline nil :strike-through nil)))) `(line-number-current-line ((,class (:inherit default - :foreground ,soria-white :distant-foreground nil + :foreground ,soria-white :background ,soria-darkgray :weight normal :italic nil :underline nil :strike-through nil)))) -- cgit v1.2.3