1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-26 17:10:38 +00:00

Fixes idesubs$ crashing when cursor is at symbol.

This commit is contained in:
Fellippe Heitor 2021-02-13 06:22:14 -03:00
parent df90f7c558
commit b71655d46c

View file

@ -8617,6 +8617,7 @@ FUNCTION idesubs$
IF LEN(a2$) > 1 THEN
DO UNTIL alphanumeric(ASC(RIGHT$(a2$, 1)))
a2$ = LEFT$(a2$, LEN(a2$) - 1) 'removes sigil, if any
IF LEN(a2$) = 0 THEN EXIT DO
LOOP
END IF