aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2025-07-03 07:08:21 +0200
committerMiquel Sabaté Solà <mikisabate@gmail.com>2025-07-03 07:08:21 +0200
commit65581530155b097fc314a19b2851a7dffcfd3790 (patch)
tree5043b1d5043c9e9b3f19af17f7c8882c606c72cb
parent21cf19d4271ba7d9ce3e6ade82417dd3627932af (diff)
downloadsoria-65581530155b097fc314a19b2851a7dffcfd3790.tar.gz
soria-65581530155b097fc314a19b2851a7dffcfd3790.zip
Fix warning on nil distant-foreground
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à <mikisabate@gmail.com>
-rw-r--r--soria-theme.el4
1 files changed, 2 insertions, 2 deletions
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))))