1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-04 22:20:24 +00:00

Reenables colorization of &B, &O and &H literals.

This commit is contained in:
FellippeHeitor 2020-06-14 01:00:25 -03:00
parent e26b34801d
commit 9ff0945a6e

View file

@ -8657,7 +8657,7 @@ SUB ideshowtext
IF checkKeyword$ = "-" OR checkKeyword$ = "." OR checkKeyword$ = "&" THEN
checkKeyword$ = ""
ELSE
IF isnumber(checkKeyword$) THEN
IF UCASE$(LEFT$(checkKeyword$, 2)) = "&H" OR UCASE$(LEFT$(checkKeyword$, 2)) = "&O" OR UCASE$(LEFT$(checkKeyword$, 2)) = "&B" OR isnumber(checkKeyword$) THEN
is_Number = -1
isKeyword = LEN(checkKeyword$)
END IF