diff --git a/core/core-lib.el b/core/core-lib.el index 29d655b29..21a493068 100644 --- a/core/core-lib.el +++ b/core/core-lib.el @@ -224,7 +224,7 @@ This is a variadic `push'." (defmacro prependq! (sym &rest lists) "Prepend LISTS to SYM in place." - `(setq ,sym (append (list ,@lists) ,sym))) + `(setq ,sym (append ,@lists ,sym))) (defmacro appendq! (sym &rest lists) "Append LISTS to SYM in place."