--- gforth/blocks.fs 2003/01/20 19:17:59 1.39 +++ gforth/blocks.fs 2003/10/30 14:18:41 1.42 @@ -1,6 +1,6 @@ \ A less simple implementation of the blocks wordset. -\ Copyright (C) 1995,1996,1997,1998,2000 Free Software Foundation, Inc. +\ Copyright (C) 1995,1996,1997,1998,2000,2003 Free Software Foundation, Inc. \ This file is part of Gforth. @@ -112,7 +112,7 @@ Defer flush-blocks ( -- ) \ gforth : save-buffer ( buffer -- ) \ gforth >r - r@ buffer-dirty @ r@ buffer-block @ 0<> and + r@ buffer-dirty @ if r@ buffer-block @ block-position r@ block-buffer chars/block r@ buffer-fid @ write-file throw @@ -216,7 +216,7 @@ User scr ( -- a-addr ) \ block-ext s-c-r \ restore-input :noname blk @ >in @ 2 ; \ save-input :noname 2 ; \ source-id "*a block*" -:noname 1 blk +! 1 loadline +! true ; \ refill +:noname 1 blk +! 1 loadline +! >in off true ; \ refill :noname blk @ block chars/block ; \ source Create block-input A, A, A, A, A, @@ -242,12 +242,11 @@ Create block-input A, A, A, A, A, \G Save the current input source specification. Store @i{n} in \G @code{BLK}, set @code{>IN} to 0 and interpret. When the parse \G area is exhausted, restore the input source specification. - loadfilename 2@ 2>r - s" * a block*" loadfilename 2! + s" * a block*" loadfilename>r push-file dup loadline ! blk ! >in off ['] interpret catch pop-file - 2r> loadfilename 2! + r>loadfilename throw ; [THEN]