diff options
author | Chris Hansen <hansec@uw.edu> | 2014-05-05 20:27:35 (GMT) |
---|---|---|
committer | Chris Hansen <hansec@uw.edu> | 2014-05-05 20:27:35 (GMT) |
commit | d8221cb7a73efc8f20068636c3d2fec84ce8cb8b (patch) | |
tree | 516be703abe4e7c85db7b3a2509c608c8662f301 /src/fortrancode.l | |
parent | 558697792cd062b93e8d7b7904fb9897e5f70750 (diff) | |
download | Doxygen-d8221cb7a73efc8f20068636c3d2fec84ce8cb8b.zip Doxygen-d8221cb7a73efc8f20068636c3d2fec84ce8cb8b.tar.gz Doxygen-d8221cb7a73efc8f20068636c3d2fec84ce8cb8b.tar.bz2 |
Fixed keyword type
Diffstat (limited to 'src/fortrancode.l')
-rw-r--r-- | src/fortrancode.l | 4 |
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; |