From d417677305d7e34082890fb3d1477886e37c3c9a Mon Sep 17 00:00:00 2001 From: SpacemacsBot <86630153+SpacemacsBot@users.noreply.github.com> Date: Tue, 16 Aug 2022 22:59:48 +0300 Subject: [PATCH] [bot] built_in_updates (#15702) Co-authored-by: SpacemacsBot --- core/libs/package-build.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/libs/package-build.el b/core/libs/package-build.el index d83d6d82b..e3bbdec9b 100644 --- a/core/libs/package-build.el +++ b/core/libs/package-build.el @@ -693,9 +693,9 @@ then show a warning. A files specification is a list. Its elements are processed in order and can have the following form: -- :default +- :defaults - If the very first element of the top-level SPEC is `:default', + If the very first element of the top-level SPEC is `:defaults', then that means to prepend the default file spec to the SPEC specified by the remaining elements. @@ -721,7 +721,7 @@ order and can have the following form: \(fn RCP &optional ASSERT)" ; Other arguments only for backward compat. (let ((default-directory (or repo (package-recipe--working-tree rcp))) (spec (or spec (oref rcp files)))) - (when (eq :defaults (car spec)) + (when (eq (car spec) :defaults) (setq spec (append package-build-default-files-spec (cdr spec)))) (let ((files (package-build--expand-files-spec-1 (or spec package-build-default-files-spec))))