From 501adc6580a24a3dc59925ebcf31363ec2531cfa Mon Sep 17 00:00:00 2001 From: Andreas Fuchs Date: Wed, 29 May 2019 10:49:47 +0200 Subject: [PATCH] Use the non-deprecated face for mode-line-inactive (#66) modeline-inactive was deprecated in emacs 22.1, and causes errors on 26.2. --- boon-spaceline.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boon-spaceline.el b/boon-spaceline.el index 3c8c8da..58f9294 100644 --- a/boon-spaceline.el +++ b/boon-spaceline.el @@ -15,7 +15,7 @@ "Boon status" (boon-state-string) :when (bound-and-true-p boon-mode) - :face (if (powerline-selected-window-active) (boon-state-face) 'modeline-inactive)) + :face (if (powerline-selected-window-active) (boon-state-face) 'mode-line-inactive))