Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linebreaks between definitions don't respect #:indent #70

Open
jackfirth opened this issue Sep 15, 2024 · 0 comments
Open

Linebreaks between definitions don't respect #:indent #70

jackfirth opened this issue Sep 15, 2024 · 0 comments

Comments

@jackfirth
Copy link
Contributor

jackfirth commented Sep 15, 2024

The expression (program-format "(define x 1) (define y (* x 2))" #:indent 2) produces this code:

(define x 1)
(define y (* x 2))

But to be correct with respect to the #:indent 2 argument, it should produce this:

(define x 1)
  (define y (* x 2))

This issue seems related to #68. This isn't intended behavior, is it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant