Skip to content

Commit 5d770f8

Browse files
committed
Merge pull request #597 from pyr/fix/596
remove extra quoting. fixes #596
2 parents 99d94fa + efd583f commit 5d770f8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

haskell-font-lock.el

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -89,43 +89,43 @@ This is the case if the \".\" is part of a \"forall <tvar> . <type>\"."
8989
(string= " " (string (char-before start))))))))
9090

9191
(defface haskell-keyword-face
92-
'((t :inherit 'font-lock-keyword-face))
92+
'((t :inherit font-lock-keyword-face))
9393
"Face used to highlight Haskell keywords."
9494
:group 'haskell)
9595

9696
(defface haskell-constructor-face
97-
'((t :inherit 'font-lock-type-face))
97+
'((t :inherit font-lock-type-face))
9898
"Face used to highlight Haskell constructors."
9999
:group 'haskell)
100100

101101
;; This used to be `font-lock-variable-name-face' but it doesn't result in
102102
;; a highlighting that's consistent with other modes (it's mostly used
103103
;; for function defintions).
104104
(defface haskell-definition-face
105-
'((t :inherit 'font-lock-function-name-face))
105+
'((t :inherit font-lock-function-name-face))
106106
"Face used to highlight Haskell definitions."
107107
:group 'haskell)
108108

109109
;; This is probably just wrong, but it used to use
110110
;; `font-lock-function-name-face' with a result that was not consistent with
111111
;; other major modes, so I just exchanged with `haskell-definition-face'.
112112
(defface haskell-operator-face
113-
'((t :inherit 'font-lock-variable-name-face))
113+
'((t :inherit font-lock-variable-name-face))
114114
"Face used to highlight Haskell operators."
115115
:group 'haskell)
116116

117117
(defface haskell-pragma-face
118-
'((t :inherit 'font-lock-preprocessor-face))
118+
'((t :inherit font-lock-preprocessor-face))
119119
"Face used to highlight Haskell pragmas."
120120
:group 'haskell)
121121

122122
(defface haskell-default-face
123-
'((t :inherit 'default))
123+
'((t :inherit default))
124124
"Face used to highlight ordinary Haskell code."
125125
:group 'haskell)
126126

127127
(defface haskell-literate-comment-face
128-
'((t :inherit 'font-lock-doc-face))
128+
'((t :inherit font-lock-doc-face))
129129
"Face with which to fontify literate comments.
130130
Inherit from `default' to avoid fontification of them."
131131
:group 'haskell)

0 commit comments

Comments
 (0)