I've defined the following :
(eval-after-load 'clojure-mode
'(font-lock-add-keywords
'clojure-mode `(("\\(#\\){"
(0 (progn (compose-region (match-beginning 1)
(match-end 1)
"∈")
nil))))))
Now I want to change it to :
(eval-after-load 'clojure-mode
'(font-lock-add-keywords
'clojure-mode `(("\\(#\\){"
(0 (progn (compose-region (match-beginning 1)
(match-end 1)
"Ø")
nil))))))
If I just eval this expression, the clojure-mode
buffer will not change, the "∈" is displayed and not change to "Ø", even if I run fundamental-mode
and clojure-mode
again.
How Can I fix this?