@@ -89,43 +89,43 @@ This is the case if the \".\" is part of a \"forall <tvar> . <type>\"."
89
89
(string= " " (string (char-before start))))))))
90
90
91
91
(defface haskell-keyword-face
92
- '((t :inherit ' font-lock-keyword-face ))
92
+ '((t :inherit font-lock-keyword-face ))
93
93
" Face used to highlight Haskell keywords."
94
94
:group 'haskell )
95
95
96
96
(defface haskell-constructor-face
97
- '((t :inherit ' font-lock-type-face ))
97
+ '((t :inherit font-lock-type-face ))
98
98
" Face used to highlight Haskell constructors."
99
99
:group 'haskell )
100
100
101
101
; ; This used to be `font-lock-variable-name-face' but it doesn't result in
102
102
; ; a highlighting that's consistent with other modes (it's mostly used
103
103
; ; for function defintions).
104
104
(defface haskell-definition-face
105
- '((t :inherit ' font-lock-function-name-face ))
105
+ '((t :inherit font-lock-function-name-face ))
106
106
" Face used to highlight Haskell definitions."
107
107
:group 'haskell )
108
108
109
109
; ; This is probably just wrong, but it used to use
110
110
; ; `font-lock-function-name-face' with a result that was not consistent with
111
111
; ; other major modes, so I just exchanged with `haskell-definition-face' .
112
112
(defface haskell-operator-face
113
- '((t :inherit ' font-lock-variable-name-face ))
113
+ '((t :inherit font-lock-variable-name-face ))
114
114
" Face used to highlight Haskell operators."
115
115
:group 'haskell )
116
116
117
117
(defface haskell-pragma-face
118
- '((t :inherit ' font-lock-preprocessor-face ))
118
+ '((t :inherit font-lock-preprocessor-face ))
119
119
" Face used to highlight Haskell pragmas."
120
120
:group 'haskell )
121
121
122
122
(defface haskell-default-face
123
- '((t :inherit ' default ))
123
+ '((t :inherit default ))
124
124
" Face used to highlight ordinary Haskell code."
125
125
:group 'haskell )
126
126
127
127
(defface haskell-literate-comment-face
128
- '((t :inherit ' font-lock-doc-face ))
128
+ '((t :inherit font-lock-doc-face ))
129
129
" Face with which to fontify literate comments.
130
130
Inherit from `default' to avoid fontification of them."
131
131
:group 'haskell )
0 commit comments