The debugger / Debugger commands |
The undisplay command cancels expressions to be displayed when the program stops.
undisplay itemnum [...]
When the display command is used, each expression displayed is assigned an item number.
The undisplay command allows you to remove expressions from the list to be displayed, using the item number to specific the expression to be removed.
(fgldb) step 2: i = 2 1: a = 20 9 FOR i = 1 TO 10 (fgldb) undisplay 2 (fgldb) step 1: a = 20 10 Let cont = TRUE (fgldb)