branch: elpa/isl
commit 4c92f24a69d80147f146896427af27a677018a61
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>

    Fix unused backquotes in deffaces
---
 isearch-light.el | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/isearch-light.el b/isearch-light.el
index a3072ea3f5e..747b3fa9eac 100644
--- a/isearch-light.el
+++ b/isearch-light.el
@@ -85,28 +85,28 @@ in pattern."
   :type 'string)
 
 (defface isl-match
-  `((t :background "Brown4"))
+  '((t :background "Brown4"))
   "Face used to highlight the items matched."
   :group 'isearch-light)
 
 (defface isl-on
-  `((t :background "SandyBrown"
+  '((t :background "SandyBrown"
        :foreground "black"))
   "Face used to highlight the item where point is."
   :group 'isearch-light)
 
 (defface isl-line
-  `((t :background "Darkgoldenrod1"))
+  '((t :background "Darkgoldenrod1"))
   "Face used to flash line on exit."
   :group 'isearch-light)
 
 (defface isl-number
-  `((t :foreground "green"))
+  '((t :foreground "green"))
   "Face used to highlight number in mode-line."
   :group 'isearch-light)
 
 (defface isl-string
-  `((t :foreground "Lightgoldenrod1" :bold t))
+  '((t :foreground "Lightgoldenrod1" :bold t))
   "Face used to highlight pattern in mode-line."
   :group 'isearch-light)
 

Reply via email to