diff --git a/core/core-lib.el b/core/core-lib.el index 06547f4d2..3d2d27c29 100644 --- a/core/core-lib.el +++ b/core/core-lib.el @@ -171,13 +171,6 @@ This is a variadic `cl-pushnew'." `(dolist (,var (list ,@values)) (cl-pushnew ,var ,place)))) -(defmacro pushmany! (place &rest values) - "Push VALUES sequentually into PLACE. -This is a variadic `push'." - (let ((var (make-symbol "result"))) - `(dolist (,var ,values) - (push ,var ,place)))) - (defmacro prependq! (sym &rest lists) "Prepend LISTS to SYM in place." `(setq ,sym (append ,@lists ,sym)))