Native Inspect Manual (H06.07+)
Syntax of Native Inspect Commands
Native Inspect Manual—528122-006
4-68
set command (environment)
history sub-attribute value
sets attributes of the command history maintained by Native Inspect.
sub-attribute is one of:
expansion { on | off }
sets history expansion on command input.
filename { on | off }
sets the name of the file in which to record the command history.
save { on | off }
sets saving of the history record on exit from Native Inspect.
size number
sets the size of the command history. The default value is 256.
input-radix { 8 | 10 | 16 }
sets the default input radix for entering numbers.
language { ptal | c | c++ | cobol }
sets the current source language.
When debugging pTAL using Native Inspect:
•
You must use C/C++ syntax.
•
Use the == operator for equality; use = for assignment.
•
Pointers are not automatically dereferenced; you must use the C *
operator.
•
In subprocs, you must qualify variable names in the containing proc by
using this syntax:
procname::localvarname
Note that PROC and SUBPROC names are listed in the stack trace in
uppercase letters.
•
You can access global variables hidden by a local or sublocal by using
::localvarname.
•
To set breakpoints on subprocs, use the dot operator to qualify the subproc
name:
procname.subprocname










