Replaced old eval with "expand analyze evaluate-eproc"
[scheme.forth.jl.git] / src / scheme-primitives.4th
index f38fd93..183efec 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 )
+\     
+    apply
+; make-primitive apply 
 
 \ }}}