Making post-command-hook local-variable is riskey.

This commit is contained in:
Kazu Yamamoto 2012-04-05 17:23:25 +09:00
parent cdd8eb71a3
commit f71358c4d0
1 changed files with 3 additions and 2 deletions

View File

@ -54,7 +54,7 @@
(ghc-type-clear-overlay)
(setq after-change-functions
(cons 'ghc-type-clear-overlay after-change-functions))
(set (make-local-variable 'post-command-hook) 'ghc-type-post-command-hook))
(add-hook 'post-command-hook 'ghc-type-post-command-hook))
(defun ghc-type-clear-overlay (&optional beg end len)
(when (overlayp ghc-type-overlay)
@ -63,7 +63,8 @@
(move-overlay ghc-type-overlay 0 0)))
(defun ghc-type-post-command-hook ()
(when (and (overlayp ghc-type-overlay)
(when (and (eq major-mode 'haskell-mode)
(overlayp ghc-type-overlay)
(/= (ghc-type-get-point) (point)))
(ghc-type-clear-overlay)))