mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
copy-seq -> copy-sequence
It's a possibility that the copy-seq alias doesn't exist in certain builds of Emacs. Better safe than sorry.
This commit is contained in:
@ -62,7 +62,7 @@ ready to be pasted in a bug report on github."
|
||||
(or (ignore-errors
|
||||
(require 'use-package)
|
||||
(cl-loop for (name . plist) in (doom-get-packages :private t)
|
||||
if (use-package-plist-delete (copy-seq plist) :private)
|
||||
if (use-package-plist-delete (copy-sequence plist) :private)
|
||||
collect (format "%s" (cons name it))
|
||||
else
|
||||
collect (symbol-name name)))
|
||||
|
Reference in New Issue
Block a user