Removed io.read and io.write.
h3rald h3rald@h3rald.com
Sun, 27 Oct 2024 11:39:08 +0100
3 files changed,
1 insertions(+),
10 deletions(-)
M
minpkg/lib/min_io.nim
→
minpkg/lib/min_io.nim
@@ -153,10 +153,4 @@ return choice
let choice = choose() i.dequote(q.qVal[choice-1].qVal[1]) - def.symbol("write") do (i: In): - i.pushSym("fwrite") - - def.symbol("read") do (i: In): - i.pushSym("fread") - def.finalize("io")
M
next-release.md
→
next-release.md
@@ -3,6 +3,7 @@
* Actually removed the `invoke` symbol and `*` sigil that were supposed to be removed in v0.44.0 but didn't. * Removed Dockerfile and Notepad++ highlighter (no longer maintained). * When defining or deleting a sigil, a symbol with the same name is now defined/deleted as well. +* Removed obsolete aliases `io.read` and `io.write`. ### Fixes and Improvements
M
site/contents/reference-io.md
→
site/contents/reference-io.md
@@ -70,8 +70,6 @@
{#op||putchr||{{s}}||{{any}}|| Prints {{s}} to STDOUT without printing a new line ({{s}} must contain only one character).#} -{#alias||read||fread#} - {#op||unmapkey||{{sl}}||{{none}}|| > Unmaps a previously-mapped key or key-combination {{sl}}, restoring the default mapping if available. >@@ -84,5 +82,3 @@ #}
{#op||warn||{{any}}||{{any}}|| Prints {{any}} and a new line to STDERR, if logging level is set to [warn](class:kwd) or lower.#} - -{#alias||write||fwrite#}