Factored apply out of application-executor
[scheme.forth.jl.git] / src / scheme-primitives.4th
index 183efec..21a0440 100644 (file)
@@ -592,13 +592,13 @@ defer display
 
 \ ==== Evaluation ==== {{{
 
-:noname ( args -- result )
-    2dup car 2swap cdr
-\ 
-    nil? false = if car then ( proc argvals )
-\     
-\     apply
-; make-primitive apply 
+:noname ( args -- result )
+    2dup car 2swap cdr
+    nil? false = if car then ( proc argvals )
+     
+    2swap apply
+; make-primitive apply 
 
 \ }}}