1
0
mirror of https://github.com/janet-lang/janet synced 2025-11-08 19:43:41 +00:00

Add errorParent to threads.

This commit is contained in:
Calvin Rose
2017-06-19 23:01:34 -04:00
parent 6c597f6b5b
commit 70478a410b
12 changed files with 90 additions and 32 deletions

View File

@@ -117,6 +117,8 @@ int debug_repl(Gst *vm) {
break;
if (!reader || *reader == '\0') {
buffer = readline(">> ");
if (*buffer == '\0')
return 0;
add_history(buffer);
reader = buffer;
}