> It still makes the second and later lines not indented though > (starting at position 0, while the first line is indented, not > starting at 0).
Looking at the guile source code, the lack of indentation in the second and later lines seems to be the convention. So, I don't think this is a problem. Something like the following is fine. (define (foo arg) "This is the first line. This is the second line." #t)