We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdd7145 commit 4a302d2Copy full SHA for 4a302d2
ulisp-esp32.ino
@@ -5666,7 +5666,7 @@ object *nextitem (gfun_t gfun) {
5666
for (object *e = GlobalEnv; e != nil && !found; e = cdr(e)) {
5667
if (car(car(e)) == sym) found = true;
5668
}
5669
- if (!found) push(cons(sym, sym), GlobalEnv);
+ if (!found) sym = cons(bsymbol(QUOTE), cons(sym, nil)); // keywords quote themselves
5670
5671
return sym;
5672
0 commit comments