1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-17 10:49:56 +00:00

Update CHANGELOG.md

This commit is contained in:
Calvin Rose 2020-11-15 15:34:32 -06:00
parent 3ab2ae130b
commit dcf8ba0edb
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## Unreleased - ??? ## 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/open` if ev is enabled.
- Add `os/pipe` if ev is enabled. - Add `os/pipe` if ev is enabled.
- Add `janet_thread_current(void)` to C API - Add `janet_thread_current(void)` to C API

View File

@ -2690,7 +2690,7 @@
get a chunk of source code that should return nil for end of file. 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 The second parameter is a function that is called when a signal is
caught. One can provide an optional environment table to run 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." to run-context."
[&opt chunks onsignal env parser read] [&opt chunks onsignal env parser read]
(default env (make-env)) (default env (make-env))