Skip to content

Commit

Permalink
[ASM] Recognize ## style comment line, issue #851.
Browse files Browse the repository at this point in the history
  • Loading branch information
zufuliu committed Sep 7, 2024
1 parent e1e7fb9 commit e92cad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scintilla/lexers/LexAsm.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ void ColouriseAsmDoc(Sci_PositionU startPos, Sci_Position length, int initStyle,
sc.Forward();
} else if (IsADigit(sc.chNext) || (sc.chNext == '$' && IsHexDigit(sc.GetRelative(2)))) {
sc.SetState(SCE_ASM_NUMBER);
} else if (IsAsmWordStart(sc.chNext)) {
} else if (IsAsmWordChar(sc.chNext)) {
sc.SetState(SCE_ASM_IDENTIFIER);
} else {
char pp[64];
Expand Down

0 comments on commit e92cad9

Please sign in to comment.