civodul pushed a commit to branch master
in repository guix.

commit 4bd75d79e5ad8bb0f6cdcc0d15b9afb25f54afbd
Author: Ludovic Courtès <[email protected]>
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 <[email protected]>.
    
    * 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