indenter mishandles multiline `match` clause body starting with literal value
Opened this issue · 1 comments
mbutterick commented
If a match
clause starts with a literal value, and the clause body goes onto a second line or more, those extra result lines are indented incorrectly.
#lang racket
(match 42
[42 'this
'that])
#lang at-exp racket
(match 42
[42 'this
'that])
samth commented
This also happens for case
and cond
.