aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-10-02 22:27:55 +0200
committerLudovic Courtès <ludo@gnu.org>2022-10-02 22:27:55 +0200
commit4bd75d79e5ad8bb0f6cdcc0d15b9afb25f54afbd (patch)
tree85b167980794e244cec99d99fe34c0227e19e096
parent3624f4358c1671a04f05168021c9f808f095fb1c (diff)
downloadguix-4bd75d79e5ad8bb0f6cdcc0d15b9afb25f54afbd.tar
guix-4bd75d79e5ad8bb0f6cdcc0d15b9afb25f54afbd.tar.gz
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.
-rw-r--r--guix/read-print.scm2
1 files changed, 1 insertions, 1 deletions
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)