Fix JS error messages

This commit is contained in:
Justine Tunney 2021-12-01 10:13:55 -08:00
parent 59c904fb95
commit a29df7bee2

View file

@ -336,8 +336,9 @@ function Lisp() {
continue;
}
x = Eval(x, a);
} catch (x) {
} catch (z) {
PrintChar(Ord('?'));
x = z;
}
Print(x);
Gc(A, 0);