branch: elpa/haskell-mode
commit e85acb09d29fece3ec335cc6d94bd50b8577dac6
Author: Steve Purcell <[email protected]>
Commit: Steve Purcell <[email protected]>
Fix defcustom types (bytecomp warning)
---
haskell-customize.el | 2 +-
w3m-haddock.el | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/haskell-customize.el b/haskell-customize.el
index dccddc7a6e..3ed41affe7 100644
--- a/haskell-customize.el
+++ b/haskell-customize.el
@@ -394,7 +394,7 @@ hindent, structured-haskell-mode, tool-de-jour, etc.
You can set this per-project with a .dir-locals.el file"
:group 'haskell
- :type '(repeat 'string))
+ :type '(repeat string))
(defcustom haskell-stylish-on-save nil
"Whether to run stylish-haskell on the buffer before saving.
diff --git a/w3m-haddock.el b/w3m-haddock.el
index 0f6a9e1190..59b118bf96 100644
--- a/w3m-haddock.el
+++ b/w3m-haddock.el
@@ -54,7 +54,7 @@ You can rebind this if you're using hsenv by adding it to your
"
:group 'haskell
- :type 'list)
+ :type '(list string))
(defvar w3m-haddock-entry-regex "^\\(\\(data\\|type\\) \\|[a-z].* :: \\)"
"Regex to match entry headings.")