1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-27 21:57:41 +00:00

Merge branch 'master' into ev

Also add poll implementation for ev.
This commit is contained in:
Calvin Rose
2020-09-07 12:52:50 -05:00
21 changed files with 787 additions and 154 deletions

View File

@@ -763,7 +763,7 @@ static int line() {
switch (c) {
default:
if (c < 0x20) break;
if ((unsigned char) c < 0x20) break;
if (insert(c, 1)) return -1;
break;
case 1: /* ctrl-a */