Skip to content

Commit

Permalink
Fixed keyword type
Browse files Browse the repository at this point in the history
  • Loading branch information
hansec committed May 5, 2014
1 parent 5586977 commit d8221cb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/fortrancode.l
Original file line number Diff line number Diff line change
Expand Up @@ -805,15 +805,13 @@ PREFIX (RECURSIVE{BS_}|IMPURE{BS_}|PURE{BS_}|ELEMENTAL{BS_}){0,3}(RECURSIVE|I
yy_pop_state();YY_FTN_RESET
}
<Start>"import"{BS_} {
startFontClass("keywordflow");
startFontClass("keywordtype");
codifyLines(yytext);
endFontClass();
yy_push_state(YY_START);
BEGIN(Import);
}
<Import>{ID} {
QCString tmp = yytext;
tmp = tmp.lower();
g_insideBody=TRUE;
generateLink(*g_code, yytext);
g_insideBody=FALSE;
Expand Down

0 comments on commit d8221cb

Please sign in to comment.