guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/05: snippets: tempel: Fix calls to mapconcat.


From: guix-commits
Subject: 03/05: snippets: tempel: Fix calls to mapconcat.
Date: Thu, 6 Oct 2022 15:18:24 -0400 (EDT)

lilyp pushed a commit to branch master
in repository guix.

commit 980c34853e1020018df3a0c04753ea46d880e9a7
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Thu Oct 6 18:54:36 2022 +0200

    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(-)

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: "



reply via email to

[Prev in Thread] Current Thread [Next in Thread]