--- gforth/stuff.fs 2005/06/28 06:45:07 1.42 +++ gforth/stuff.fs 2005/11/05 23:26:49 1.46 @@ -123,8 +123,9 @@ AUser CSP 2dup r@ read-file throw over <> abort" could not read whole file" r> close-file throw ; -: slurp-fid { fid -- addr u } \ gforth - \G @var{addr u} is the content of the file @var{fid} +: slurp-fid ( fid -- addr u ) \ gforth +\G @var{addr u} is the content of the file @var{fid} + { fid } 0 0 begin ( awhole uwhole ) dup 1024 + dup >r extend-mem ( anew awhole uwhole R: unew ) rot r@ fid read-file throw ( awhole uwhole uread R: unew ) @@ -153,11 +154,12 @@ AUser CSP \ this is only a marker; it is never really interpreted compile-only-error ; immediate +[ifdef] compiler1 : postponer1 ( c-addr u -- ... xt ) 2dup find-name dup if ( c-addr u nt ) nip nip name>comp 2dup [comp'] [[ d= if - 2drop ['] compiler1 is parser1 + 2drop ['] compiler1 is parser1 ['] noop else ['] postpone, endif @@ -179,6 +181,8 @@ AUser CSP \ switch into postpone state ['] postponer1 is parser1 state on ; immediate restrict +[then] + \ f.rdp : push-right ( c-addr u1 u2 cfill -- ) @@ -196,6 +200,11 @@ AUser CSP ur nd - 1- dup { beforep } fsign + nexp 0 max >= and if \ fixed-point notation c-addr ur beforep nexp - dup { befored } '0 push-right + befored 1+ ur >= if \ <=1 digit left, will be pushed out by '.' + rf fabs f2* 0.1e nd s>d d>f f** f> if \ round last digit + '1 c-addr befored + 1- c! + endif + endif c-addr beforep 1- befored min dup { beforez } 0 max bl fill fsign if '- c-addr beforez 1- 0 max + c!