diff options
author | Chris Hansen <hansec@uw.edu> | 2014-05-07 17:48:58 (GMT) |
---|---|---|
committer | Chris Hansen <hansec@uw.edu> | 2014-05-07 17:48:58 (GMT) |
commit | 56143a268898249a63bb0a443e09dc2c77ec9ce9 (patch) | |
tree | e2392977efde653e100547fb8d40fc91d2c7aeaf /src | |
parent | 5c5c90b63e9c5b21efa3cd7033b1c8f613f67e63 (diff) | |
download | Doxygen-56143a268898249a63bb0a443e09dc2c77ec9ce9.zip Doxygen-56143a268898249a63bb0a443e09dc2c77ec9ce9.tar.gz Doxygen-56143a268898249a63bb0a443e09dc2c77ec9ce9.tar.bz2 |
Fixes regression due to PR 169
Diffstat (limited to 'src')
-rw-r--r-- | src/fortrancode.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fortrancode.l b/src/fortrancode.l index aaa8510..a21dc56 100644 --- a/src/fortrancode.l +++ b/src/fortrancode.l @@ -751,7 +751,7 @@ PREFIX (RECURSIVE{BS_}|IMPURE{BS_}|PURE{BS_}|ELEMENTAL{BS_}){0,3}(RECURSIVE|I codifyLines(yytext); endFontClass(); } -<Start>^{BS}(CASE|CLASS|TYPE){BS_}(IS|DEFAULT) { +<Start>{BS}(CASE|CLASS|TYPE){BS_}(IS|DEFAULT) { startFontClass("keywordflow"); codifyLines(yytext); endFontClass(); |