when_echo_fns, when_exception_fns
when_echo_fns,
when_exception_fns — indicate the functions for echos or exceptions on a
point.
when_echo_fns (symbol)
when_exception_fns (symbol)
symbolA point name, as a symbol.
A list of expressions to be evaluated when an echo or exception occurs on
the symbol.
Gamma>add_echo_function(#temp,#princ("echo\n"));(princ "echo\n")Gamma>add_echo_function(#temp,#temp/2);(/ temp 2)Gamma>when_echo_fns(#temp);((/ temp 2) (princ "echo\n") t)Gamma>write_point(#temp,22);tGamma>next_event();echo (11 t t)Gamma>