diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-10-02 22:27:55 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-10-02 22:27:55 +0200 |
commit | 4bd75d79e5ad8bb0f6cdcc0d15b9afb25f54afbd (patch) | |
tree | 85b167980794e244cec99d99fe34c0227e19e096 /guix | |
parent | 3624f4358c1671a04f05168021c9f808f095fb1c (diff) |
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.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/read-print.scm | 2 |
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) |