Hi all,
I'm coding in Haskell and find that if I type 'do' and then hit the <tab> key I get the a couple of lines of code for a C do/while loop. It looks like:
llvmVarOfExp2 (XUnbox t v) = do { } while ()
which is definitelu not Haskell code :-).
How do I switch this off? At least for Haskell.
Erik