branch: master commit 708ca11bd58e44656ee65c13abd71f88aaf7b05b Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
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