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

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

[elpa] master 708ca11 141/272: ivy.el: Fix a few face declarations


From: Oleh Krehel
Subject: [elpa] master 708ca11 141/272: ivy.el: Fix a few face declarations
Date: Mon, 25 Apr 2016 10:13:22 +0000

branch: master
commit 708ca11bd58e44656ee65c13abd71f88aaf7b05b
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>

    ivy.el: Fix a few face declarations
    
    `customize-face' wasn't working well with them.
---
 ivy.el |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ivy.el b/ivy.el
index 88d2dae..fe840c7 100644
--- a/ivy.el
+++ b/ivy.el
@@ -93,15 +93,15 @@
   "Face used by Ivy for a match required prompt.")
 
 (defface ivy-subdir
-  '((t (:inherit 'dired-directory)))
+  '((t :inherit dired-directory))
   "Face used by Ivy for highlighting subdirs in the alternatives.")
 
 (defface ivy-modified-buffer
-  '((t :inherit 'default))
+  '((t :inherit default))
   "Face used by Ivy for highlighting modified file visiting buffers.")
 
 (defface ivy-remote
-  '((t (:foreground "#110099")))
+  '((t :foreground "#110099"))
   "Face used by Ivy for highlighting remotes in the alternatives.")
 
 (defface ivy-virtual



reply via email to

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