emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org-remark e6bf242649 058/173: fix: Add highlighter fac


From: ELPA Syncer
Subject: [elpa] externals/org-remark e6bf242649 058/173: fix: Add highlighter face def for termianl
Date: Fri, 28 Jan 2022 16:57:59 -0500 (EST)

branch: externals/org-remark
commit e6bf2426497865f6453c69808ec78bb6e1db29cc
Author: Noboru Ota <me@nobiot.com>
Commit: Noboru Ota <me@nobiot.com>

    fix: Add highlighter face def for termianl
    
    The case t for defface `org-martinalia-highlighter` was missing for the 
cases
    where there are not enough colors the display is capabile of -- i.e. 
terminal.
---
 org-marginalia.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/org-marginalia.el b/org-marginalia.el
index 791e5c9816..1f33e71894 100644
--- a/org-marginalia.el
+++ b/org-marginalia.el
@@ -179,7 +179,9 @@ separate Org file"
   '((((class color) (min-colors 88) (background light))
      :underline "#aecf90" :background "#ecf7ed")
     (((class color) (min-colors 88) (background dark))
-     :underline "#00422a" :background "#001904"))
+     :underline "#00422a" :background "#001904")
+    (t
+     :inherit highlight))
   "Face for highlighters."
   :group 'org-marginalia)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]