> a) adding arguments to the ghci was not well documented. So I appended 
> the following (and a few more paths) to my .gnu-emacs:
> 
> ;(add-hook 'haskell-mode-hook 'turn-on-haskell-hugs)
> (add-hook 'haskell-mode-hook 'turn-on-haskell-ghci)
> (setq haskell-ghci-program-args
>        (append
>         '("-fglasgow-exts")
>         '("-fallow-overlapping-instances")
>         '("-Wall")
>         '("-package data")
>         '("-i.:..")
> ))

You can also create a .ghci file in your home directory and put:

:set -fglasgow-exts
:set -fallow-overlapping-instances
...

into it.  ghci will read this when run.

sorry, but i can't help with the other two things...


_______________________________________________
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users

Reply via email to