I don't think it's so much bugs as it's funky indentation :-). For example...

data TableInfo = TableInfo {
                            avgPot :: Double,

I would have preferred not to offset the fields from the brace but I don't know how to change this and maybe I'm going against standard Haskell style here.

    case findprop attr props of
                             Just x -> x

seems like a lot of space is wasted by hanging the Just from the off. I have to resort fo this now

case findprop attr props
     of Just x -> x

Try this to see that you cannot indent "something here" at the same level as let.

main = do let foo = 10
              bar = 20
              something here

I'm sure I can come up with a few more.

    Thanks, Joel

On Oct 21, 2005, at 8:08 AM, Stefan Monnier wrote:

I've got haskell mode working with Emacs and ghc, this works okay, though the mode seems a little rough-edged, and the indentation appears slightly
wonky at times.


Bug reports welcome,

--
http://wagerlabs.com/





_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to