From 31bb3b8a7964c5a17294684d60b905c5b97cb424 Mon Sep 17 00:00:00 2001 From: Aistis Raulinaitis Date: Wed, 10 Jun 2015 17:02:51 -0700 Subject: [PATCH] defconst to defcustom --- haskell-font-lock.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/haskell-font-lock.el b/haskell-font-lock.el index 1c1c7b1cf..6990933ed 100644 --- a/haskell-font-lock.el +++ b/haskell-font-lock.el @@ -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" . "¬") ("->" . "→") @@ -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.