1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-28 11:17:46 +00:00

Fixes F1 key bug when cursor is on some symbols.

This commit is contained in:
FellippeHeitor 2018-11-01 17:07:33 -03:00
parent 4bbecab4c2
commit 3575e98f61

View file

@ -2468,6 +2468,7 @@ FUNCTION ide2 (ignore)
IF LEN(a2$) THEN
DO UNTIL alphanumeric(ASC(RIGHT$(a2$, 1)))
a2$ = LEFT$(a2$, LEN(a2$) - 1) 'removes sigil, if any
IF LEN(a2$) = 0 THEN GOTO NoKeywordFound
LOOP
FOR y = 1 TO iden
@ -2540,6 +2541,7 @@ FUNCTION ide2 (ignore)
END IF
NEXT
END IF
NoKeywordFound:
END IF 'lnks
END IF