mirror of
https://github.com/samsonjs/sectorlisp.git
synced 2026-04-27 14:57:41 +00:00
parent
522f0a16fd
commit
532b92688e
1 changed files with 1 additions and 1 deletions
2
lisp.c
2
lisp.c
|
|
@ -241,7 +241,7 @@ void PrintList(int x) {
|
||||||
#endif
|
#endif
|
||||||
PrintChar('(');
|
PrintChar('(');
|
||||||
PrintObject(Car(x));
|
PrintObject(Car(x));
|
||||||
while ((x = Cdr(x))) {
|
while ((x = Cdr(x)) != NIL) {
|
||||||
if (!ISATOM(x)) {
|
if (!ISATOM(x)) {
|
||||||
PrintChar(' ');
|
PrintChar(' ');
|
||||||
PrintObject(Car(x));
|
PrintObject(Car(x));
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue