1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-20 02:04:44 +00:00

Move lineformat to AFTER $metacommands in prepass loop

As per Discord discussion
This commit is contained in:
Steve McNeill 2024-02-09 02:46:00 -05:00
parent 441e978f74
commit f67803254a

View file

@ -1610,10 +1610,6 @@ DO
IF LEN(wholeline$) THEN
wholeline$ = lineformat(wholeline$)
IF Error_Happened THEN GOTO errmes
temp$ = LTRIM$(RTRIM$(UCASE$(wholestv$)))
@ -1794,6 +1790,9 @@ DO
END SELECT
END IF
wholeline$ = lineformat(wholeline$)
IF Error_Happened THEN GOTO errmes
cwholeline$ = wholeline$
wholeline$ = eleucase$(wholeline$) '********REMOVE THIS LINE LATER********