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

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

[elpa] externals/ivy-explorer 212f8d2 23/25: Use fallback to border face


From: Stefan Monnier
Subject: [elpa] externals/ivy-explorer 212f8d2 23/25: Use fallback to border face if lv not installed
Date: Tue, 8 Jan 2019 12:26:00 -0500 (EST)

branch: externals/ivy-explorer
commit 212f8d24e09cbcd6223d528bcdd77f2c80c12448
Author: Clemera <address@hidden>
Commit: Clemera <address@hidden>

    Use fallback to border face if lv not installed
---
 ivy-explorer.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ivy-explorer.el b/ivy-explorer.el
index 3d28718..ba989c9 100644
--- a/ivy-explorer.el
+++ b/ivy-explorer.el
@@ -78,7 +78,9 @@ Line is drawn between the ivy explorer window and the Echo 
Area."
   :type 'function)
 
 (defface ivy-explorer-separator
-  '((t (:inherit lv-separator)))
+  (if (featurep 'lv)
+      '((t (:inherit lv-separator)))
+    '((t (:inherit border))))
   "Face used to draw line between the ivy-explorer window and the echo area.
 This is only used if option `ivy-explorer-use-separator' is non-nil.
 Only the background color is significant."



reply via email to

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