1
1
Fork 0
mirror of https://github.com/FellippeHeitor/InForm.git synced 2025-01-15 03:49:56 +00:00

Fixes infinite loop condition in recent commit.

This commit is contained in:
FellippeHeitor 2018-06-24 22:40:09 -03:00
parent 5ddeaf6c59
commit c21ccaad0e

View file

@ -2970,8 +2970,6 @@ FUNCTION RestoreCHRfromEscapeCode$ (__Text$)
IF LEN(tempNum$) THEN
Text$ = LEFT$(Text$, BackSlash - 1) + CHR$(VAL(tempNum$)) + MID$(Text$, SemiColon + 1)
END IF
BackSlash = 0
LOOP
RestoreCHRfromEscapeCode$ = Text$