Skip to content

Commit e85acb0

Browse files
committed
Fix defcustom types (bytecomp warning)
1 parent 26b134a commit e85acb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

haskell-customize.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ hindent, structured-haskell-mode, tool-de-jour, etc.
394394
395395
You can set this per-project with a .dir-locals.el file"
396396
:group 'haskell
397-
:type '(repeat 'string))
397+
:type '(repeat string))
398398

399399
(defcustom haskell-stylish-on-save nil
400400
"Whether to run stylish-haskell on the buffer before saving.

w3m-haddock.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ You can rebind this if you're using hsenv by adding it to your
5454
5555
"
5656
:group 'haskell
57-
:type 'list)
57+
:type '(list string))
5858

5959
(defvar w3m-haddock-entry-regex "^\\(\\(data\\|type\\) \\|[a-z].* :: \\)"
6060
"Regex to match entry headings.")

0 commit comments

Comments
 (0)