guix-commits
[Top][All Lists]
Advanced

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

03/14: read-print: Fix indentation rule for 'match-lambda*'.


From: guix-commits
Subject: 03/14: read-print: Fix indentation rule for 'match-lambda*'.
Date: Sun, 2 Oct 2022 18:11:33 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 4bd75d79e5ad8bb0f6cdcc0d15b9afb25f54afbd
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sun Oct 2 22:27:55 2022 +0200

    read-print: Fix indentation rule for 'match-lambda*'.
    
    Fixes <https://issues.guix.gnu.org/58040>.
    Reported by Maxime Devos <maximedevos@telenet.be>.
    
    * guix/read-print.scm (%special-forms): Set 'match-lambda*' parameter
    count to 1.
---
 guix/read-print.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/read-print.scm b/guix/read-print.scm
index 65b8cce37d..a9aa57a476 100644
--- a/guix/read-print.scm
+++ b/guix/read-print.scm
@@ -277,7 +277,7 @@ expressions and blanks that were read."
    ('lambda 2)
    ('lambda* 2)
    ('match-lambda 1)
-   ('match-lambda* 2)
+   ('match-lambda* 1)
    ('define 2)
    ('define* 2)
    ('define-public 2)



reply via email to

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