diff --git a/CHANGELOG.md b/CHANGELOG.md index a25094d5..db64cf97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. ## Unreleased - ??? +- `os/execute` and `os/spawn` can take streams for redirecting IO. +- Add `;parser` and `:read` parameters to `run-context`. - Add `os/open` if ev is enabled. - Add `os/pipe` if ev is enabled. - Add `janet_thread_current(void)` to C API diff --git a/src/boot/boot.janet b/src/boot/boot.janet index 24235e05..d1d7342e 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -2690,7 +2690,7 @@ get a chunk of source code that should return nil for end of file. The second parameter is a function that is called when a signal is caught. One can provide an optional environment table to run - the repl in, as well as an optional parser or read function to pass + the repl in, as well as an optional parser or read function to pass to run-context." [&opt chunks onsignal env parser read] (default env (make-env))