leoliu pushed a commit to branch master
in repository elpa.

commit 2aad794e0b0b886556389a5bb1aa20f5ccd849a7
Author: Leo Liu <sdl....@gmail.com>
Date:   Mon Oct 14 21:56:08 2013 +0800

    Fix quoting error in face definitions
---
 easy-kill.el |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/easy-kill.el b/easy-kill.el
index cb8c70b..fd70a99 100644
--- a/easy-kill.el
+++ b/easy-kill.el
@@ -51,11 +51,11 @@ CHAR is used immediately following `easy-kill' to select 
THING."
   :type '(repeat symbol)
   :group 'killing)
 
-(defface easy-kill-selection '((default (:inherit 'secondary-selection)))
+(defface easy-kill-selection '((t (:inherit secondary-selection)))
   "Faced used to highlight kill candidate."
   :group 'killing)
 
-(defface easy-kill-origin '((default (:inverse-video t :inherit 'error)))
+(defface easy-kill-origin '((t (:inverse-video t :inherit error)))
   "Faced used to highlight the origin."
   :group 'killing)
 

Reply via email to