snippets: tempel: Fix calls to mapconcat.

* etc/snippets/tempel/text-mode (update\ ,https\ ): Add "\n" as separator
argument to mapconcat.
This commit is contained in:
Liliana Marie Prikler 2022-10-06 18:54:36 +02:00
parent e4951f7c71
commit 980c34853e
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -70,7 +70,7 @@ text-mode :when (and (fboundp 'git-commit-mode) (git-commit-mode))
(buffer-substring-no-properties (point) (- end 2))))))
version) "." n n
"* " (car (magit-staged-files)) " (" (s var) "): Update to " (s version) "."
(mapconcat (lambda (file) (concat "* " file)) (cdr (magit-staged-files))) n)
n (mapconcat (lambda (file) (concat "* " file)) (cdr (magit-staged-files)) "\n"))
(addcl\
"gnu: Add cl-"
@ -98,7 +98,7 @@ text-mode :when (and (fboundp 'git-commit-mode) (git-commit-mode))
var)
": Use HTTPS home page." n n
"* " (car (magit-staged-files)) " (" (s var) ")[home-page]: Use HTTPS." n
(mapconcat (lambda (file) (concat "* " file)) (cdr (magit-staged-files))) n)
(mapconcat (lambda (file) (concat "* " file)) (cdr (magit-staged-files)) "\n"))
(move\
"gnu: "