summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/fortrancode.l4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/fortrancode.l b/src/fortrancode.l
index 06f712a..b2991f5 100644
--- a/src/fortrancode.l
+++ b/src/fortrancode.l
@@ -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;