X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=scheme.forth.jl.git;a=blobdiff_plain;f=src%2Fscheme-primitives.4th;h=f38fd93a94c060e625983093307f780dda94e110;hp=1e37e0d5bd3e20451ff21e355a72b730abfab3da;hb=87885070a953e05cbf41d1521c9ad500d02572a1;hpb=5c89ece636005a3008eb27a80b0c805b4d0e4c84 diff --git a/src/scheme-primitives.4th b/src/scheme-primitives.4th index 1e37e0d..f38fd93 100644 --- a/src/scheme-primitives.4th +++ b/src/scheme-primitives.4th @@ -611,12 +611,15 @@ defer display nil? if ." Error." else - ." Error: " - - begin - 2dup car print - cdr nil? - until + ." Error:" + + 2dup car space display + cdr nil? invert if + begin + 2dup car space print + cdr nil? + until + then 2drop then