remove_exception_function
remove_exception_function — removes an exception function from a symbol.
remove_exception_function (symbol, exc_fn)
symbolThe point name, as a symbol, from which to remove the exception function.
exc_fnThe exception function body.
The exception function which was removed, or nil if no function was removed.
This function removes an exception function (DataHub exception handler) from
the symbol. The exc_fn is
compared to all of the current exception functions for the
symbol using the comparison function
eq.
Gamma>add_exception_function(#temp, #princ("temp change\n"));(princ "temp change\n")Gamma>next_event();temp change (t)Gamma>temp;40Gamma>remove_exception_function(#temp, #princ("temp change\n"));(princ "temp change\n")Gamma>next_event();nilGamma>temp;35Gamma>