Skip to content

Commit

Permalink
Use string-join instead of mapconcat
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Jun 23, 2024
1 parent d9ce37b commit 9411f5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package-build.el
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ value specified in the file \"NAME.el\"."
(lm-header-multiline "package-requires")))
(package--prepare-dependencies
(package-read-from-string
(mapconcat #'identity require-lines " "))))))
(string-join require-lines " "))))))
;; `:kind' and `:archive' are handled separately.
:kind (or kind 'single)
;; The other keyword arguments are appended to the alist
Expand Down

0 comments on commit 9411f5d

Please sign in to comment.