From ac21fe9ca56b8acddf9a9f3add6b9cebae7c68bc Mon Sep 17 00:00:00 2001 From: Aaron Jensen Date: Sat, 3 Jun 2023 21:29:26 -0400 Subject: [PATCH] Fix nano-modeline--base-face --- nano-modeline.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nano-modeline.el b/nano-modeline.el index a8ae3c3..4736f7b 100644 --- a/nano-modeline.el +++ b/nano-modeline.el @@ -225,7 +225,7 @@ Each face defined here is used by the modeline depending on the current state (a (active (eq window nano-modeline--selected-window)) (state (intern (concat (symbol-name face-prefix) (if active "-active" "-inactive")))) - (face (cdr (assoc state nano-modeline-faces)))) + (face (cadr (assoc state nano-modeline-faces)))) face)) (defun nano-modeline-face (&optional face-prefix)