remove_echo_function
remove_echo_function — removes an echo function from a symbol.
remove_echo_function (symbol, echo_fn)
symbolThe point name, as a symbol, from which to remove the echo function.
echo_fnThe echo function body.
The echo function which was removed, or nil if no function was removed.
This function removes an echo function (DataHub echo handler) from the
symbol. The echo_fn is
compared to all of the current echo functions for the
symbol using the comparison function
eq.
Gamma>add_echo_function(#temp,#princ("echo\n"));(princ "echo\n")Gamma>write_point(#temp,28);tGamma>next_event();echo (t t)Gamma>remove_echo_function(#temp,#princ("echo\n"));(princ "echo\n")Gamma>write_point(#temp,32);tGamma>next_event();(t)Gamma>