The symbol from which to remove the expression.
An expression set for the symbol, such as that added by add_set_function.
This function removes a set expression from the symbol. The s_exp is compared to all of the current expression set for the symbol using the comparison function eq.
Gamma> b = 5;
5
Gamma> add_set_function(#b,#princ("changed\n"));
(princ "changed\n")
Gamma> b = 4;
changed
4
Gamma> remove_set_function(#b,#princ("changed\n"));
(princ "changed\n")
Gamma> b = 3;
3
Gamma>