1
0
mirror of https://github.com/janet-lang/janet synced 2026-05-19 11:52:28 +00:00

Update changelog and spelling

This commit is contained in:
Calvin Rose
2026-01-18 11:08:50 -06:00
parent 78a785175a
commit 979233dee5
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -2,6 +2,7 @@
All notable changes to this project will be documented in this file.
## Unreleased - ???
- Add `:I`, `:V`, and `:N` flags to `os/open` for more control when creating streams.
- Add `ev/go-gather` for a dynamic `ev/gather`.
- Use color in script output if color is being used in REPL output.
- Fix `varfn` macros handling of extra metadata.
+3 -3
View File
@@ -2717,7 +2717,7 @@ JANET_CORE_FN(os_open,
JanetHandle fd;
#ifdef JANET_WINDOWS
(void) mode;
int inherrited_handle = 0;
int inherited_handle = 0;
DWORD desiredAccess = 0;
DWORD shareMode = 0;
DWORD creationDisp = 0;
@@ -2787,7 +2787,7 @@ JANET_CORE_FN(os_open,
fileFlags |= FILE_FLAG_NO_BUFFERING;
break;
case 'I':
inherrited_handle = 1;
inherited_handle = 1;
break;
case 'V':
fileFlags &= ~FILE_FLAG_OVERLAPPED;
@@ -2823,7 +2823,7 @@ JANET_CORE_FN(os_open,
SECURITY_ATTRIBUTES saAttr;
memset(&saAttr, 0, sizeof(saAttr));
saAttr.nLength = sizeof(saAttr);
if (inherrited_handle) {
if (inherited_handle) {
saAttr.bInheritHandle = TRUE; /* Needed to do interesting things with file */
}
fd = CreateFileA(path, desiredAccess, shareMode, &saAttr, creationDisp, fileFlags | fileAttributes, NULL);