31
31
(require 'haskell-string )
32
32
(require 'font-lock )
33
33
34
- ;;;### autoload
35
34
(defgroup haskell-appearance nil
36
35
" Haskell Appearance."
37
36
:group 'haskell )
@@ -145,19 +144,16 @@ font faces assigned as if respective mode was enabled."
145
144
:group 'haskell-appearance
146
145
:type '(repeat (cons string symbol)))
147
146
148
- ;;;### autoload
149
147
(defface haskell-keyword-face
150
148
'((t :inherit font-lock-keyword-face ))
151
149
" Face used to highlight Haskell keywords."
152
150
:group 'haskell-appearance )
153
151
154
- ;;;### autoload
155
152
(defface haskell-type-face
156
153
'((t :inherit font-lock-type-face ))
157
154
" Face used to highlight Haskell types"
158
155
:group 'haskell-appearance )
159
156
160
- ;;;### autoload
161
157
(defface haskell-constructor-face
162
158
'((t :inherit font-lock-type-face ))
163
159
" Face used to highlight Haskell constructors."
@@ -174,25 +170,21 @@ font faces assigned as if respective mode was enabled."
174
170
; ; This is probably just wrong, but it used to use
175
171
; ; `font-lock-function-name-face' with a result that was not consistent with
176
172
; ; other major modes, so I just exchanged with `haskell-definition-face' .
177
- ;;;### autoload
178
173
(defface haskell-operator-face
179
174
'((t :inherit font-lock-variable-name-face ))
180
175
" Face used to highlight Haskell operators."
181
176
:group 'haskell-appearance )
182
177
183
- ;;;### autoload
184
178
(defface haskell-pragma-face
185
179
'((t :inherit font-lock-preprocessor-face ))
186
180
" Face used to highlight Haskell pragmas ({-# ... #-})."
187
181
:group 'haskell-appearance )
188
182
189
- ;;;### autoload
190
183
(defface haskell-liquid-haskell-annotation-face
191
184
'((t :inherit haskell-pragma-face))
192
185
" Face used to highlight LiquidHaskell annotations ({-@ ... @-})."
193
186
:group 'haskell-appearance )
194
187
195
- ;;;### autoload
196
188
(defface haskell-literate-comment-face
197
189
'((t :inherit font-lock-doc-face ))
198
190
" Face with which to fontify literate comments.
0 commit comments