diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/passes/Print.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index 1d07b7f3c..2e9800775 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -3089,8 +3089,9 @@ void PrintSExpression::visitElementSegment(ElementSegment* curr) { } } else { for (auto* entry : curr->data) { - o << ' '; + o << " (item "; visit(entry); + o << ')'; } } o << ')' << maybeNewLine; |