diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-08-06 16:43:59 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2019-08-06 16:43:59 (GMT) |
commit | 533c5cadfad41763f294c49f8cb7a19fbc5a19d8 (patch) | |
tree | f4e4c9cdf1466a8fad1b6c3192859f47671190a7 /src/code.l | |
parent | f96507054f1af54bee57734ec3d9a25b821feb27 (diff) | |
parent | 69f51747c37bb24b7e296ff01bb7e45a624f6225 (diff) | |
download | Doxygen-533c5cadfad41763f294c49f8cb7a19fbc5a19d8.zip Doxygen-533c5cadfad41763f294c49f8cb7a19fbc5a19d8.tar.gz Doxygen-533c5cadfad41763f294c49f8cb7a19fbc5a19d8.tar.bz2 |
Merge branch 'master' of https://github.com/analizo/doxygen into analizo-master
Diffstat (limited to 'src/code.l')
-rw-r--r-- | src/code.l | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -2472,6 +2472,10 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\" BEGIN(FuncCall); } <Body>{FLOWCONDITION}/{BN}*"(" { + if (g_currentMemberDef && g_currentMemberDef->isFunction()) + { + g_currentMemberDef->addFlowKeyWord(); + } startFontClass("keywordflow"); codifyLines(yytext); endFontClass(); @@ -2489,6 +2493,10 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\" } } <Body>{FLOWCONDITION}/([^a-z_A-Z0-9]) { + if (g_currentMemberDef && g_currentMemberDef->isFunction()) + { + g_currentMemberDef->addFlowKeyWord(); + } startFontClass("keywordflow"); codifyLines(yytext); endFontClass(); @@ -2503,6 +2511,10 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\" endFontClass(); } <Body>{FLOWCONDITION}/{B}* { + if (g_currentMemberDef && g_currentMemberDef->isFunction()) + { + g_currentMemberDef->addFlowKeyWord(); + } startFontClass("keywordflow"); codifyLines(yytext); endFontClass(); @@ -3038,6 +3050,10 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\" endFontClass(); } <MemberCall2,FuncCall>{FLOWCONDITION}/([^a-z_A-Z0-9]) { + if (g_currentMemberDef && g_currentMemberDef->isFunction()) + { + g_currentMemberDef->addFlowKeyWord(); + } addParmType(); g_parmName=yytext; startFontClass("keywordflow"); |