From 4bd75d79e5ad8bb0f6cdcc0d15b9afb25f54afbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sun, 2 Oct 2022 22:27:55 +0200 Subject: read-print: Fix indentation rule for 'match-lambda*'. Fixes . Reported by Maxime Devos . * 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) -- cgit v1.2.3