From 980c34853e1020018df3a0c04753ea46d880e9a7 Mon Sep 17 00:00:00 2001
From: Liliana Marie Prikler <liliana.prikler@gmail.com>
Date: Thu, 6 Oct 2022 18:54:36 +0200
Subject: snippets: tempel: Fix calls to mapconcat.

* etc/snippets/tempel/text-mode (update\ ,https\ ): Add "\n" as separator
argument to mapconcat.
---
 etc/snippets/tempel/text-mode | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'etc/snippets')

diff --git a/etc/snippets/tempel/text-mode b/etc/snippets/tempel/text-mode
index 8096d92e47..d6a1d8df45 100644
--- a/etc/snippets/tempel/text-mode
+++ b/etc/snippets/tempel/text-mode
@@ -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: "
-- 
cgit v1.2.3