untracev
untracev(
[ { s_variable ... | t } ]
)
=> g_result
Description
Turns off tracing for assignments to specified variables. This is an nlambda function.
Arguments
Value Returned
Examples
tracev x ; Traces the variable x.
x = 5 ; Shows the old and new value of x.
untracev x ; Clears tracing for the variable x.
tracev t ; Traces all variable assignments.
untracev t ; Clears all variable tracing.
Related Topics
Return to top