[PATCH] Fix :box specification for 'help-key-binding'
Export this patch
Emacs 30 raises an error if the plist is malformed:
face-spec-set-2: Invalid face box: :color, "#a3a4ae", (1 . -1), :line-width
---
aircon-theme.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/aircon-theme.el b/aircon-theme.el
index 0ff344d..e6cd8d6 100644
--- a/aircon-theme.el
+++ b/aircon-theme.el
@@ -1,6 +1,6 @@
;;; aircon-theme.el --- Cool and legible light theme -*- lexical-binding: t; -*-
-;; Copyright (C) 2022 Free Software Foundation, Inc.
+;; Copyright (C) 2022, 2024 Free Software Foundation, Inc.
;; Version: 0.0.6
;; Author: Gregory Chamberlain <greg@cosine.blue>
@@ -134,7 +134,7 @@
'(compilation-error ((t (:inherit error))))
`(help-key-binding ((t (:inherit (aircon-header)
- :box (:color ,aircon-ghost (1 . -1) :line-width)))))
+ :box (:color ,aircon-ghost :line-width (1 . -1))))))
'(shadow ((t (:inherit (aircon-scorpion)))))
'(error ((t (:inherit (bold aircon-brick)))))
--
2.44.0
--
Philip Kaludercic on peregrine
Thanks!
To git.sr.ht:~chambln/aircon-theme.el
0cecd81..b0b53e1 master -> master