1
0
mirror of https://github.com/janet-lang/janet synced 2024-12-27 00:40:26 +00:00

Remove restriction on bytes being input to getline.

This commit is contained in:
Calvin Rose 2020-09-06 10:36:38 -05:00
parent 922a21d359
commit 1eb00a9f74

View File

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