Skip to content

Commit 31bb3b8

Browse files
committed
defconst to defcustom
1 parent b5bef49 commit 31bb3b8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

haskell-font-lock.el

+4-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ alignment and can thus lead to nasty surprises w.r.t layout."
3838
:group 'haskell
3939
:type 'boolean)
4040

41-
(defconst haskell-font-lock-symbols-alist
41+
(defcustom haskell-font-lock-symbols-alist
4242
'(("\\" . "λ")
4343
("not" . "¬")
4444
("->" . "")
@@ -75,7 +75,9 @@ COMPONENTS is a representation specification suitable as an argument to
7575
`compose-region'.
7676
PREDICATE if present is a function of one argument (the start position
7777
of the symbol) which should return non-nil if this mapping should
78-
be disabled at that position.")
78+
be disabled at that position."
79+
:type '(alist string string)
80+
:group 'haskell)
7981

8082
(defun haskell-font-lock-dot-is-not-composition (start)
8183
"Return non-nil if the \".\" at START is not a composition operator.

0 commit comments

Comments
 (0)