branch: elpa/moe-theme commit 6df0d99a1a2006b218282f15d84609b88478ca7a Author: dalu <mou.t...@outlook.com> Commit: クエン酸 <azazabc...@gmail.com>
fix invalid `:style none` :box properties `none` is no longer a valid value for :box's :style attribute, as of recent commits of Emacs HEAD. --- moe-dark-theme.el | 4 ++-- moe-light-theme.el | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/moe-dark-theme.el b/moe-dark-theme.el index cb0ffb4be6..6acb02d24e 100644 --- a/moe-dark-theme.el +++ b/moe-dark-theme.el @@ -161,9 +161,9 @@ Moe, moe, kyun!") :box (:line-width 1 :style released-button))))) `(org-date ((,class (:foreground ,blue-0 :underline t)))) `(org-done ((,class (:bold t :weight bold :foreground ,green-4 :background ,green-0 - :box (:line-width 1 :style none))))) + :box (:line-width 1 :style nil))))) `(org-todo ((,class (:bold t :weight bold :foreground ,red-3 :background ,orange-0 - :box (:line-width 1 :style none))))) + :box (:line-width 1 :style nil))))) `(org-level-1 ((,class (:foreground ,blue-1)))) `(org-level-2 ((,class (:foreground ,green-2)))) `(org-level-3 ((,class (:foreground ,orange-2)))) diff --git a/moe-light-theme.el b/moe-light-theme.el index ae191a71a6..dddc4d149d 100644 --- a/moe-light-theme.el +++ b/moe-light-theme.el @@ -161,9 +161,9 @@ Moe, moe, kyun!") :box (:line-width 1 :style released-button))))) `(org-date ((,class (:foreground ,blue-2 :underline t)))) `(org-done ((,class (:bold t :weight bold :foreground ,green-4 :background ,green-00 - :box (:line-width 1 :style none))))) + :box (:line-width 1 :style nil))))) `(org-todo ((,class (:bold t :weight bold :foreground ,red-3 :background ,orange-0 - :box (:line-width 1 :style none))))) + :box (:line-width 1 :style nil))))) `(org-level-1 ((,class (:bold t :foreground ,blue-1)))) `(org-level-2 ((,class (:bold t :foreground ,green-02)))) `(org-level-3 ((,class (:bold t :foreground ,orange-2))))