giving up idle-timer.

- cannot avoid race
- not friendly with cradle.
This commit is contained in:
Kazu Yamamoto 2014-04-21 20:14:44 +09:00
parent 0bb71c2bfc
commit 69cacb0865
1 changed files with 1 additions and 30 deletions

View File

@ -99,11 +99,7 @@ unloaded modules are loaded")
"Data.Maybe"
"System.Directory"
"System.FilePath"
"System.IO"))
;; fixme :: ghc-sync-process uses a global var for syncing.
;; This may causes race.
;; (run-with-idle-timer ghc-idle-timer-interval 'repeat 'ghc-idle-timer)
)
"System.IO")))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
@ -247,9 +243,6 @@ unloaded modules are loaded")
(not (member mod ghc-loaded-module))))
mods))
(defun ghc-load-module-all-buffers ()
(ghc-load-merge-modules (ghc-gather-import-modules-all-buffers)))
(defun ghc-load-module-buffer ()
(ghc-load-merge-modules (ghc-gather-import-modules-buffer)))
@ -273,26 +266,6 @@ unloaded modules are loaded")
(defun ghc-module-keyword (mod)
(symbol-value (ghc-module-symbol mod)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(ghc-defstruct buffer name file)
(defun ghc-buffer-name-file (buf)
(ghc-make-buffer
:name (buffer-name buf)
:file (buffer-file-name buf)))
(defun ghc-gather-import-modules-all-buffers ()
(let ((bufs (mapcar 'ghc-buffer-name-file (buffer-list)))
ret file)
(save-excursion
(dolist (buf bufs (ghc-uniq-lol ret))
(setq file (ghc-buffer-get-file buf))
(when (and file (string-match "\\.hs$" file))
(set-buffer (ghc-buffer-get-name buf))
(ghc-add ret (ghc-gather-import-modules-buffer)))))))
(defun ghc-gather-import-modules-buffer ()
(let (ret)
(save-excursion
@ -307,6 +280,4 @@ unloaded modules are loaded")
;;; Background Idle Timer
;;;
(defalias 'ghc-idle-timer 'ghc-load-module-all-buffers)
(provide 'ghc-comp)