Skip to content

Commit

Permalink
defconst to defcustom
Browse files Browse the repository at this point in the history
  • Loading branch information
sheganinans committed Jun 11, 2015
1 parent b5bef49 commit 31bb3b8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions haskell-font-lock.el
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ alignment and can thus lead to nasty surprises w.r.t layout."
:group 'haskell
:type 'boolean)

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

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

0 comments on commit 31bb3b8

Please sign in to comment.