mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix prependq!
Used one too many levels of nesting
This commit is contained in:
@ -224,7 +224,7 @@ This is a variadic `push'."
|
|||||||
|
|
||||||
(defmacro prependq! (sym &rest lists)
|
(defmacro prependq! (sym &rest lists)
|
||||||
"Prepend LISTS to SYM in place."
|
"Prepend LISTS to SYM in place."
|
||||||
`(setq ,sym (append (list ,@lists) ,sym)))
|
`(setq ,sym (append ,@lists ,sym)))
|
||||||
|
|
||||||
(defmacro appendq! (sym &rest lists)
|
(defmacro appendq! (sym &rest lists)
|
||||||
"Append LISTS to SYM in place."
|
"Append LISTS to SYM in place."
|
||||||
|
Reference in New Issue
Block a user