hello,
 
when i press C-c C-l to load my file into ghci, emacs stops responding. task manager shows ghc.exe process running, so it happens some time after the ghci buffer is created.
 
my setup:
 
- emacs on windows xp, version 21.1.1
- GHC package version 5.04.1
- haskell editing mode version 1.43
- relevant .emacs lines:
 
(add-to-list 'load-path "c:/programs/emacs-21.1/site-lisp/haskell-mode")
(add-to-list 'auto-mode-alist '("\\.hs$" . haskell-mode))
(add-to-list 'auto-mode-alist '("\\.lhs$" . literate-haskell-mode))
 
(autoload 'haskell-mode "haskell-mode")
(autoload 'literate-haskell-mode "haskell-mode")
 
(setq haskell-ghci-program-name "c:/ghc/ghc-5.04.1/bin/ghci.exe")
 
(add-hook 'haskell-mode-hook 'turn-on-haskell-decl-scan)
(add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
(add-hook 'haskell-mode-hook 'turn-on-haskell-font-lock)
(add-hook 'haskell-mode-hook 'turn-on-haskell-ghci)
(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
 
would appreciate any help!
 
konst