Skip to content

Commit 1c3aaf0

Browse files
remove redefinition of fn_return
1 parent 0b22144 commit 1c3aaf0

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

ulisp.hpp

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4671,16 +4671,6 @@ object* fn_eval (object* args, object* env) {
46714671
return eval(first(args), env);
46724672
}
46734673

4674-
/*
4675-
(return [value])
4676-
Exits from a (dotimes ...), (dolist ...), or (loop ...) loop construct and returns value.
4677-
*/
4678-
object *fn_return (object *args, object *env) {
4679-
(void) env;
4680-
setflag(RETURNFLAG);
4681-
if (args == NULL) return nil; else return first(args);
4682-
}
4683-
46844674
/*
46854675
(globals)
46864676
Returns a list of global variables.

0 commit comments

Comments
 (0)