It doesn't look like the GHCI interpreter echoes; as such, the following patch turns off comint-process-echoes when ghci is run.
--- old-haskellmode-emacs/haskell-ghci.el 2010-01-29 22:32:13.501789554 -0500 +++ new-haskellmode-emacs/haskell-ghci.el 2010-01-29 22:32:13.509797905 -0500 @@ -182,8 +182,9 @@ ;; History syntax of comint conflicts with Haskell, e.g. !!, so better ;; turn it off. (setq comint-input-autoexpand nil) + (setq comint-process-echoes nil) (run-hooks 'haskell-ghci-hook) - + ;; Clear message area. (message "")) Thanks, Nathaniel Flath
_______________________________________________ Haskellmode-emacs mailing list [email protected] http://projects.haskell.org/cgi-bin/mailman/listinfo/haskellmode-emacs
