Skip to content

Commit b2edc92

Browse files
simplify!
1 parent 554b96b commit b2edc92

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ulisp-esp32.ino

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5661,9 +5661,7 @@ object *nextitem (gfun_t gfun) {
56615661
sym = internlong(buffer);
56625662
}
56635663
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
5664+
if (!lookupbuiltin(buffer) != ENDFUNCTIONS) sym = cons(bsymbol(QUOTE), cons(sym, nil)); // keywords quote themselves
56675665
}
56685666
return sym;
56695667
}

0 commit comments

Comments
 (0)