summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Hansen <hansec@uw.edu>2014-05-05 20:27:35 (GMT)
committerChris Hansen <hansec@uw.edu>2014-05-05 20:27:35 (GMT)
commitd8221cb7a73efc8f20068636c3d2fec84ce8cb8b (patch)
tree516be703abe4e7c85db7b3a2509c608c8662f301
parent558697792cd062b93e8d7b7904fb9897e5f70750 (diff)
downloadDoxygen-d8221cb7a73efc8f20068636c3d2fec84ce8cb8b.zip
Doxygen-d8221cb7a73efc8f20068636c3d2fec84ce8cb8b.tar.gz
Doxygen-d8221cb7a73efc8f20068636c3d2fec84ce8cb8b.tar.bz2
Fixed keyword type
-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;