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 4a302d2 commit 554b96bCopy full SHA for 554b96b
ulisp-esp32.ino
@@ -5663,9 +5663,6 @@ object *nextitem (gfun_t gfun) {
5663
if (buffer[0] == ':') { // handle keywords
5664
bool found = false;
5665
if (lookupbuiltin(buffer) != ENDFUNCTIONS) found = true;
5666
- for (object *e = GlobalEnv; e != nil && !found; e = cdr(e)) {
5667
- if (car(car(e)) == sym) found = true;
5668
- }
5669
if (!found) sym = cons(bsymbol(QUOTE), cons(sym, nil)); // keywords quote themselves
5670
}
5671
return sym;
0 commit comments