branch: elpa/org-tree-slide
commit daeb80986cf35db5d9e84bd72480af1bc1403679
Author: Hyunggyu Jang <murasakipurpl...@gmail.com>
Commit: Hyunggyu Jang <murasakipurpl...@gmail.com>

    Fix face remap specifications
---
 org-tree-slide.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/org-tree-slide.el b/org-tree-slide.el
index feced8cbe4..e035b5c008 100644
--- a/org-tree-slide.el
+++ b/org-tree-slide.el
@@ -201,22 +201,22 @@ If you want to show anything, just specify nil."
   "The keymap for `org-tree-slide'.")
 
 (defcustom org-tree-slide-heading-level-1
-  '((t (:inherit outline-1 :height 1.5 :bold t)))
+  '(outline-1 :height 1.5 bold)
   "Level 1."
   :group 'org-tree-slide)
 
 (defcustom org-tree-slide-heading-level-2
-  '((t (:inherit outline-2 :height 1.4 :bold t)))
+  '(outline-2 :height 1.4 bold)
   "Level 2."
   :group 'org-tree-slide)
 
 (defcustom org-tree-slide-heading-level-3
-  '((t (:inherit outline-3 :height 1.3 :bold t)))
+  '(outline-3 :height 1.3 bold)
   "Level 3."
   :group 'org-tree-slide)
 
 (defcustom org-tree-slide-heading-level-4
-  '((t (:inherit outline-4 :height 1.2 :bold t)))
+  '(outline-4 :height 1.2 bold)
   "Level 4."
   :group 'org-tree-slide)
 

Reply via email to