branch: externals/org-modern
commit fbdc2212c95ab056127c611e3f92efe37a3f3c98
Author: JD Smith <93749+jdtsm...@users.noreply.github.com>
Commit: JD Smith <93749+jdtsm...@users.noreply.github.com>

    correct bracket-line face name
---
 org-modern-indent.el | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/org-modern-indent.el b/org-modern-indent.el
index 530ca0aa39..b931e6c776 100644
--- a/org-modern-indent.el
+++ b/org-modern-indent.el
@@ -40,13 +40,14 @@
   :prefix "org-modern-indent-")
 
 ;; Face for org-modern-indent line
-(defface org-modern-bracket-line '((t (:inherit (org-meta-line) :weight 
light)))
+(defface org-modern-indent-bracket-line
+  '((t (:inherit (org-meta-line) :weight light)))
   "Face for bracket line in org-modern-indent."
   :group 'faces)
 
-(defconst org-modern-indent-begin (propertize "╭" 'face 
'org-modern-bracket-line))
-(defconst org-modern-indent-guide (propertize "│" 'face 
'org-modern-bracket-line))
-(defconst org-modern-indent-end   (propertize "╰" 'face 
'org-modern-bracket-line))
+(defconst org-modern-indent-begin (propertize "╭" 'face 
'org-modern-indent-bracket-line))
+(defconst org-modern-indent-guide (propertize "│" 'face 
'org-modern-indent-bracket-line))
+(defconst org-modern-indent-end   (propertize "╰" 'face 
'org-modern-indent-bracket-line))
 
 (defvar org-modern-indent-begin-re
   "\\([ \t]*\\)\\(#\\+\\)\\(?:begin\\|BEGIN\\)_\\S-")

Reply via email to