From 58ab20ec5fcec979dfea6a9f527c1d39f8eb64d0 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 23 Jul 2019 18:10:40 +0200 Subject: [PATCH] Fix prependq! Used one too many levels of nesting --- core/core-lib.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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."