diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2024-04-03 19:12:59 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2024-04-03 19:12:59 +0200 |
| commit | 3b089a99b6e7c4b79f50400d29c21818f254091a (patch) | |
| tree | da1f050ed5488c68c8312595d2e0a71c8aaf9751 | |
| parent | c1f4b4ff28fbb4e4bb72473b26b8fd103ccc3ca2 (diff) | |
llama-erase-argument: Rearrange properties of box attribute
The order should not matter, but a user reported privately that on
Emacs 29.3 it does; we get an "Invalid face box" error otherwise.
| -rw-r--r-- | llama.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -279,8 +279,8 @@ It also looks a bit like #\\='function." (defface llama-erased-argument `((((supports :box t)) :box ( :line-width ,(if (>= emacs-major-version 28) (cons -1 -1) -1) - :style nil - :color "red")) + :color "red" + :style nil)) (((supports :underline t)) :underline "red") (t |
