File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 34
34
(add-to-list 'auto-mode-alist '(" \\ .chs\\ '" . haskell-c2hs-mode))
35
35
36
36
(defface haskell-c2hs-hook-pair-face
37
- '((t (:inherit ' font-lock-preprocessor-face )))
37
+ '((t (:inherit font-lock-preprocessor-face )))
38
38
" Face for highlighting {#...#} pairs."
39
39
:group 'haskell )
40
40
41
41
(defface haskell-c2hs-hook-name-face
42
- '((t (:inherit ' font-lock-keyword-face )))
42
+ '((t (:inherit font-lock-keyword-face )))
43
43
" Face for highlighting c2hs hook names."
44
44
:group 'haskell )
45
45
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ it from list if one of the following conditions are hold:
175
175
(add-hook 'change-major-mode-hook 'haskell-cabal-unregister-buffer nil 'local )
176
176
(add-hook 'kill-buffer-hook 'haskell-cabal-unregister-buffer nil 'local )
177
177
(setq-local comment-start " --" )
178
- (setq-local comment-start-skip " \\ (^[ \t ]* \\ ) --[ \t ]*" )
178
+ (setq-local comment-start-skip " --[ \t ]*" )
179
179
(setq-local comment-end " " )
180
180
(setq-local comment-end-skip " [ \t ]*\\ (\\ s>\\ |\n \\ )" )
181
181
(setq-local indent-line-function 'haskell-cabal-indent-line )
Original file line number Diff line number Diff line change 46
46
(defcustom haskell-mode-stylish-haskell-args nil
47
47
" Arguments to pass to program specified by haskell-mode-stylish-haskell-path."
48
48
:group 'haskell
49
- :type 'list )
49
+ :type '( list string) )
50
50
51
51
(defcustom haskell-interactive-set-+c
52
52
t
You can’t perform that action at this time.
0 commit comments