1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 12:40:36 +00:00

Gives more descriptive message for "Label not defined".

This commit is contained in:
Fellippe Heitor 2021-01-22 23:22:19 -03:00
parent 269803b426
commit d5ac71f8a9

View file

@ -10944,7 +10944,7 @@ FOR r = 1 TO nLabels
END IF
END IF
linenumber = Labels(r).Error_Line: a$ = "Label not defined": GOTO errmes
linenumber = Labels(r).Error_Line: a$ = "Label '" + RTRIM$(Labels(r).cn) + "' not defined": GOTO errmes
END IF