Skip to content

Commit 4a302d2

Browse files
keywords quote themselves
1 parent bdd7145 commit 4a302d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ulisp-esp32.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5666,7 +5666,7 @@ object *nextitem (gfun_t gfun) {
56665666
for (object *e = GlobalEnv; e != nil && !found; e = cdr(e)) {
56675667
if (car(car(e)) == sym) found = true;
56685668
}
5669-
if (!found) push(cons(sym, sym), GlobalEnv);
5669+
if (!found) sym = cons(bsymbol(QUOTE), cons(sym, nil)); // keywords quote themselves
56705670
}
56715671
return sym;
56725672
}

0 commit comments

Comments
 (0)