Remove unused delete! macro

Redundant with delq!
This commit is contained in:
Henrik Lissner 2019-10-06 14:13:30 -04:00
parent 05f458a75b
commit 8527897c88
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -199,10 +199,6 @@ If FETCHER is a function, ELT is used as the key in LIST (an alist)."
elt)
,list)))
(defmacro delete! (elt list)
"Delete ELT from LIST in-place."
`(setq ,list (delete ,elt ,list)))
(defmacro add-transient-hook! (hook-or-function &rest forms)
"Attaches a self-removing function to HOOK-OR-FUNCTION.