Skip to content

Commit

Permalink
fix indentation of let-values
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Jan 24, 2024
1 parent 89a39db commit 0e07c0a
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 20 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
* fix tokenizing regex that ends with hash
* fix bookmark on SRFI-210 document [#287](https://github.com/jcubic/lips/issues/287)
* fix `syntax-rules` in macro `define-value` [#290](https://github.com/jcubic/lips/issues/290)
* fix indentation of `let-values`

## 1.0.0-beta.18
### Breaking
Expand Down
10 changes: 5 additions & 5 deletions dist/lips.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions dist/lips.esm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/lips.esm.min.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/lips.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/lips.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/lips.js
Original file line number Diff line number Diff line change
Expand Up @@ -2036,7 +2036,7 @@ Formatter.defaults = {
exceptions: {
specials: [
/* eslint-disable max-len */
/^(?:#:)?(?:define(?:-values|-syntax|-macro|-class|-record-type)?|(?:call-with-(?:input-file|output-file|port))|lambda|let-env|try|catch|when|unless|while|syntax-rules|(let|letrec)(-syntax|\*)?)$/
/^(?:#:)?(?:define(?:-values|-syntax|-macro|-class|-record-type)?|(?:call-with-(?:input-file|output-file|port))|lambda|let-env|try|catch|when|unless|while|syntax-rules|(let|letrec)(-syntax|\*?-values|\*)?)$/
/* eslint-enable */
],
shift: {
Expand Down

0 comments on commit 0e07c0a

Please sign in to comment.