X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=scheme.forth.jl.git;a=blobdiff_plain;f=src%2Fscheme-primitives.4th;h=21a0440358f08ad551d979afae0bba5c1351a2b5;hp=183efec11895d274e57b5d6ce5cfc39fbc1f7634;hb=7173757033eb0681ee1c7ed5df7936e5860345a6;hpb=6cb77062c9190c13f9b9e2de245412971209c579 diff --git a/src/scheme-primitives.4th b/src/scheme-primitives.4th index 183efec..21a0440 100644 --- a/src/scheme-primitives.4th +++ b/src/scheme-primitives.4th @@ -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 \ }}}