switched to a better linenoise fork

https://github.com/msteveb/linenoise

this version has several benefits, namely win32 support :D
This commit is contained in:
2023-09-01 17:12:39 -05:00
committed by cpunch
parent dfdd97e739
commit 789c5210b4
3 changed files with 2985 additions and 1126 deletions

2
main.c
View File

@@ -84,7 +84,7 @@ static void repl(CState *state)
linenoiseHistoryAdd(line);
interpret(state, line, "REPL");
linenoiseFree(line);
free(line);
}
}