Labels local to procedures.
WHY:
Useful for example to name an exit point LBL_ERROR: and jump to it using GOTO.
This will permit to use LBL_ERROR in any proc without the need to append something to the name to make it unique.
And it will take care of errors while cutting/pasting some code from a proc to another leaving a goto to a label inside another procedure if you forget to update it to the local label.
SEE:
http://www.purebasic.fr/english/viewtop ... 88#p320088Fred wrote: I will change label's scope to be local to procedure to avoid such syntax.
ATM not available in PB 4.50.
Thanks!