down

The down command prints the function called by the current function.

Syntax

down [frames]
  1. frames is the number of frames to move down the stack. The default is 1.

Usage

The down command moves down the call stack, to the specified frame, and prints the function identified with that frame.

The command selects and prints the function called by the current function, or the function specified by the frame number in the call stack.

To print the function called by the current function, use the down command without an argument.

See stack frames for a brief description of frames.

(fgldb) down
#0 query_cust() at custquery.4gl:22 
22    CALL cleanup()
(fgldb)