mirror of
https://github.com/samsonjs/sectorlisp.git
synced 2026-03-25 09:05:48 +00:00
Fix JS error messages
This commit is contained in:
parent
59c904fb95
commit
a29df7bee2
1 changed files with 2 additions and 1 deletions
3
lisp.js
3
lisp.js
|
|
@ -336,8 +336,9 @@ function Lisp() {
|
|||
continue;
|
||||
}
|
||||
x = Eval(x, a);
|
||||
} catch (x) {
|
||||
} catch (z) {
|
||||
PrintChar(Ord('?'));
|
||||
x = z;
|
||||
}
|
||||
Print(x);
|
||||
Gc(A, 0);
|
||||
|
|
|
|||
Loading…
Reference in a new issue