Has anyone ever noticed or reported that the "Format All" item in the Edit
menu of the Unidebugger does not recognize the "ON ERROR" clause of the
DELETE statement? I.e. if you put statements after the ON ERROR clause, the
compiler requires the END word, but the "Format All" statement doesn't
associate it with the DELETE statement. See example below.

====================================================================
   PROGRAM TEST
   GOSUB INIT
   DELETE cust.note.fv,NOTE.ID ON ERROR
   CRT 'DISPLAY TEST'
END        <------------ "Format All" thinks this is a "dangling" END
STOP

INIT:
OPEN 'CUST.NOTE' TO cust.note.fv ELSE STOP 201,'CUST.NOTE'
NOTE.ID = 1
RETURN

END
====================================================================

Eric Armstrong
Lobel Financial
-------
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to