Diff for /gforth/blocks.fs between versions 1.24 and 1.25

version 1.24, 1999/04/16 22:19:50 version 1.25, 1999/05/21 20:35:35
Line 224  User scr ( -- a-addr ) \ block-ext Line 224  User scr ( -- a-addr ) \ block-ext
     \G current block + @i{n1} thru the current block + @i{n2}.      \G current block + @i{n1} thru the current block + @i{n2}.
     1+ swap ?DO  I +load  LOOP ;      1+ swap ?DO  I +load  LOOP ;
   
 : --> ( -- ) \ block- block chain  : --> ( -- ) \ gforth- gforth chain
     \G If this symbol is encountered whilst loading block @i{n},      \G If this symbol is encountered whilst loading block @i{n},
     \G discard the remainder of the block and load block @i{n+1}. Used      \G discard the remainder of the block and load block @i{n+1}. Used
     \G for chaining multiple blocks together as a single loadable unit.      \G for chaining multiple blocks together as a single loadable
       \G unit.  Not recommended, because it destroys the independence of
       \G loading.  Use @code{thru} (which is standard) or @code{+thru}
       \G instead.
     refill drop ; immediate      refill drop ; immediate
   
 : block-included ( a-addr u -- ) \ gforth  : block-included ( a-addr u -- ) \ gforth

Removed from v.1.24  
changed lines
  Added in v.1.25


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>