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; continue;
} }
x = Eval(x, a); x = Eval(x, a);
} catch (x) { } catch (z) {
PrintChar(Ord('?')); PrintChar(Ord('?'));
x = z;
} }
Print(x); Print(x);
Gc(A, 0); Gc(A, 0);