Menu

#1411 condtion always false

Undefined
fixed
nobody
None
Bug_Report
2023-09-19
2023-09-18
No

/src/sdk/wxscintilla/src/scintilla/lexers/LexTACL.cxx line 187
Code:
if (state == SCE_C_DEFAULT) {
if (isTACLwordstart(ch)) {
ColourTo(styler, i-1, state, bInAsm);
state = SCE_C_IDENTIFIER;
} else if (ch == '{') { // <- here it goes
ColourTo(styler, i-1, state, bInAsm);
state = SCE_C_COMMENT;
} else if (ch == '{' && chNext == '*') { // <- always false
ColourTo(styler, i-1, state, bInAsm);
state = SCE_C_COMMENTDOC;
}

Discussion

  • Miguel Gimenez

    Miguel Gimenez - 2023-09-19
    • status: open --> fixed
     
  • Miguel Gimenez

    Miguel Gimenez - 2023-09-19

    Fixed in [r13358], thank you.

     

    Related

    Commit: [r13358]


Log in to post a comment.

MongoDB Logo MongoDB