Fix Haskell parsing when a comment is the first thing inside a type

Closes #3552129.
This commit is contained in:
Colomban Wendling 2012-07-30 20:08:05 +02:00
parent cb54ccf8e1
commit 13e5c0202a

View File

@ -189,7 +189,7 @@ static int inside_datatype(vString *name)
else if (st == Get_Extr)
{
do {
c = fileGetc();
c = get_next_char();
} while (isspace(c));
if (c == EOF)
return c;