diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-08-27 14:22:57 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-08-27 14:22:57 (GMT) |
commit | 7fd7326ecd6f5d04e9a79eecef0c70219fa043f6 (patch) | |
tree | 4f939f059b2a0bf37fe3b6f102b197777c7de493 /src | |
parent | cfac0824b1d201fac37772ac42662901efc88ba7 (diff) | |
parent | 404468ac5484d54e47129ce2a00b3ad6e1c2c72a (diff) | |
download | Doxygen-7fd7326ecd6f5d04e9a79eecef0c70219fa043f6.zip Doxygen-7fd7326ecd6f5d04e9a79eecef0c70219fa043f6.tar.gz Doxygen-7fd7326ecd6f5d04e9a79eecef0c70219fa043f6.tar.bz2 |
Merge pull request #387 from albert-github/feature/bug_implicit
Better handling of implicit statement in source code browser
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 af1a82e..fb91a83 100644 --- a/src/fortrancode.l +++ b/src/fortrancode.l @@ -795,7 +795,7 @@ PREFIX (RECURSIVE{BS_}|IMPURE{BS_}|PURE{BS_}|ELEMENTAL{BS_}){0,3}(RECURSIVE|I codifyLines(yytext); endFontClass(); } -<Start>"implicit"{BS}"none" { +<Start>"implicit"{BS}("none"|{TYPE_SPEC}) { startFontClass("keywordtype"); codifyLines(yytext); endFontClass(); |