Skip to content

Commit

Permalink
fix: use unspecified over nil in smerge faces
Browse files Browse the repository at this point in the history
To avoid warnings in the Messages buffer
  • Loading branch information
AngeloPavone authored and jtbx committed Oct 16, 2024
1 parent fb1bf9e commit 4441d51
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions catppuccin-theme.el
Original file line number Diff line number Diff line change
Expand Up @@ -1190,13 +1190,13 @@ FLAVOR defaults to the value of `catppuccin-flavor'."
(slime-repl-inputed-output-face :foreground ,ctp-mauve)

;; smerge
(smerge-lower :inherit diff-added :background nil)
(smerge-upper :inherit diff-removed :background nil)
(smerge-lower :inherit diff-added :background unspecified)
(smerge-upper :inherit diff-removed :background unspecified)
(smerge-refined-added :inherit diff-refine-added
:background nil)
:background unspecified)
(smerge-refined-removed :inherit diff-refine-removed
:background nil)
(smerge-base :inherit diff-refine-changed :background nil)
:background unspecified)
(smerge-base :inherit diff-refine-changed :background unspecified)

;; swiper
;;(swiper-line-face :inherit swiper-match-face-1)
Expand Down

0 comments on commit 4441d51

Please sign in to comment.