Removes elements from a list
(vl-remove element-to-remove list)
Arguments
The value of the element to be removed; may be any LISP data type.
Any list.
Return Values
The list with all elements except those equal to element-to-remove.
Examples
_$ (vl-remove pi (list pi t 0 "abc"))
(T 0 "abc")