Update CHANGELOG.md

This commit is contained in:
Calvin Rose
2026-02-05 20:01:00 -06:00
parent 42c0096ce7
commit 196f27af3d
2 changed files with 7 additions and 4 deletions
+3
View File
@@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
## Unreleased - ???
- Allow overriding the loader when doing imports with the `:loader` argument.
- Allow importing modules with a path extension to do what one would expect.
- Add `find-all` argument to `module/find`
- Add :threads, :unmarshal, :compiler, and :asm sandbox flags.
- Add support for persistent REPL history with the environment variable `JANET_HISTFILE`
- Fix a number of fuzzer-found compiler bugs
+4 -4
View File
@@ -2182,10 +2182,10 @@
(def last (in t (- (length t) 1)))
(def bound (in t 1))
(keep-syntax! t
(array/concat
@[(in t 0) (expand-bindings bound)]
(tuple/slice t 2 -2)
@[(recur last)])))
(array/concat
@[(in t 0) (expand-bindings bound)]
(tuple/slice t 2 -2)
@[(recur last)])))
(defn expandall [t]
(def args (map recur (tuple/slice t 1)))