Commit 3535e205 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Merge pull request #159 from albert-github/feature/bug_623699

Bug 623299 - Fortran: quotation after define causes error
parents 49e47541 f083109d
......@@ -173,6 +173,9 @@ static bool recognizeFixedForm(const char* contents, FortranFormat format)
break;
case ' ':
break;
case '#':
skipLine=TRUE;
break;
case '\000':
return FALSE;
case 'C':
......
......@@ -1333,6 +1333,9 @@ static bool recognizeFixedForm(const char* contents, FortranFormat format)
break;
case '\000':
return FALSE;
case '#':
skipLine=TRUE;
break;
case 'C':
case 'c':
case '*':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment