diff options
author | albert-github <albert.tests@gmail.com> | 2014-12-14 10:58:01 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2014-12-14 10:58:01 (GMT) |
commit | 0ccda478e35eb420d644b6c39923f9c020e69c13 (patch) | |
tree | 155ba1de2c4d5cd83f4e3a6ceada0e28c893f926 | |
parent | dc37f6c2a42740e6cbd79d1e6c758c5cbc1f10f7 (diff) | |
download | Doxygen-0ccda478e35eb420d644b6c39923f9c020e69c13.zip Doxygen-0ccda478e35eb420d644b6c39923f9c020e69c13.tar.gz Doxygen-0ccda478e35eb420d644b6c39923f9c020e69c13.tar.bz2 |
Fortran code color END (regression pull request 259)
This is a regression on pull request 259.
Fortran code like:
end if
was not colored properly anymore. This has been corrected with this patch.
-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 d2f1c42..d68826f 100644 --- a/src/fortrancode.l +++ b/src/fortrancode.l @@ -757,7 +757,7 @@ PREFIX (RECURSIVE{BS_}|IMPURE{BS_}|PURE{BS_}|ELEMENTAL{BS_}){0,3}(RECURSIVE|I codifyLines(yytext); endFontClass(); } -<Start>"end"({BS}{FLOW})/[ \t\n] { // list is a bit long as not all have possible end +<Start>{BS}"end"({BS}{FLOW})/[ \t\n] { // list is a bit long as not all have possible end startFontClass("keywordflow"); codifyLines(yytext); endFontClass(); |