Skip to content

Commit 9a2c3eb

Browse files
remove unreachable error condition
1 parent 8be0737 commit 9a2c3eb

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

ulisp.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7397,7 +7397,6 @@ object* eval (object* form, object* env) {
73977397
}
73987398
if (bfunctionp(function)) {
73997399
builtin_t bname = builtin(function->name);
7400-
if (!builtinp(function->name)) error("can't call a symbol", function);
74017400
Context = bname;
74027401
checkminmax(bname, nargs);
74037402
object* result = ((fn_ptr_type)lookupfn(bname))(args, env);

0 commit comments

Comments
 (0)