1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-28 02:59:54 +00:00

Prepare for 0.4.1 release

This commit is contained in:
Calvin Rose 2019-04-13 19:32:31 -04:00
parent 4e6193b67e
commit 7527142549
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,9 @@
# Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 0.4.1 latest - ?? ## 0.4.1 - 2019-04-14
- Squash some bugs
- Peg patterns can now make captures in any position in a grammar.
- Add color to repl output - Add color to repl output
- Add array/remove function - Add array/remove function
- Add meson build support - Add meson build support

View File

@ -318,7 +318,7 @@ tail:
s->mode = oldmode; s->mode = oldmode;
if (!result) return NULL; if (!result) return NULL;
Janet cap = janet_stringv(s->scratch->data + cs.scratch, Janet cap = janet_stringv(s->scratch->data + cs.scratch,
s->scratch->count - cs.scratch); s->scratch->count - cs.scratch);
cap_load(s, cs); cap_load(s, cs);
pushcap(s, cap, tag); pushcap(s, cap, tag);
return result; return result;