summaryrefslogtreecommitdiffstats
path: root/src/fortrancode.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2014-12-14 10:58:01 (GMT)
committeralbert-github <albert.tests@gmail.com>2014-12-14 10:58:01 (GMT)
commit0ccda478e35eb420d644b6c39923f9c020e69c13 (patch)
tree155ba1de2c4d5cd83f4e3a6ceada0e28c893f926 /src/fortrancode.l
parentdc37f6c2a42740e6cbd79d1e6c758c5cbc1f10f7 (diff)
downloadDoxygen-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.
Diffstat (limited to 'src/fortrancode.l')
-rw-r--r--src/fortrancode.l2
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();