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