Closed dragoncoder047 closed 1 year ago
9043> (progn (terpri) (foo)) Error: 'terpri' undefined: foo 9043>
Fix (in eval()):
eval()
if (symbolp(form)) { symbol_t name = form->name; object* pair = value(name, env); if (pair != NULL) return cdr(pair); pair = value(name, GlobalEnv); if (pair != NULL) return cdr(pair); else if (builtinp(name)) return form; + Context = NIL; error(PSTR("undefined"), form); }
Good catch - thanks. Will be fixed next release.
Fixed in 4.4b - thanks!
Fix (in
eval()
):