]> code.delx.au - gnu-emacs-elpa/commitdiff
ivy.el: Fix a few face declarations
authorOleh Krehel <ohwoeowho@gmail.com>
Sat, 27 Feb 2016 12:38:45 +0000 (13:38 +0100)
committerOleh Krehel <ohwoeowho@gmail.com>
Sat, 27 Feb 2016 12:38:45 +0000 (13:38 +0100)
`customize-face' wasn't working well with them.

ivy.el

diff --git a/ivy.el b/ivy.el
index 88d2daeb4af8fec122337dfac7a183f73a82d4fb..fe840c71d4dc436b62f38140d15b0a708a254b25 100644 (file)
--- a/ivy.el
+++ b/ivy.el
   "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