mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-07 13:16:36 +02:00
fixing bug in pp-with-indent on dotted list
This commit is contained in:
parent
cc1ca2622d
commit
8645b23d42
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@
|
||||||
(each first-line
|
(each first-line
|
||||||
(cond
|
(cond
|
||||||
((not (or (null? tail) (pair? tail)))
|
((not (or (null? tail) (pair? tail)))
|
||||||
(each ". " (pp tail pp shares)))
|
(each ". " (pp tail)))
|
||||||
((> (or (length+ (cdr ls)) +inf.0) (or indent-rule 1))
|
((> (or (length+ (cdr ls)) +inf.0) (or indent-rule 1))
|
||||||
(each sep (joined/shares pp tail shares sep)))
|
(each sep (joined/shares pp tail shares sep)))
|
||||||
(else
|
(else
|
||||||
|
|
Loading…
Add table
Reference in a new issue