--- gforth/blocks.fs 2003/10/30 14:18:41 1.42 +++ gforth/blocks.fs 2007/02/18 18:30:51 1.47 @@ -1,6 +1,6 @@ \ A less simple implementation of the blocks wordset. -\ Copyright (C) 1995,1996,1997,1998,2000,2003 Free Software Foundation, Inc. +\ Copyright (C) 1995,1996,1997,1998,2000,2003,2006 Free Software Foundation, Inc. \ This file is part of Gforth. @@ -64,7 +64,10 @@ User block-offset ( -- addr ) \ gforth buffer-struct buffers * %alloc dup block-buffers ! ( addr ) buffer-struct %size buffers * erase ; -' block-cold INIT8 chained +:noname ( -- ) + defers 'cold + block-cold +; is 'cold block-cold @@ -76,10 +79,10 @@ Defer flush-blocks ( -- ) \ gforth 2dup open-fpath-file throw rot close-file throw 2dup file-status throw bin open-file throw >r 2drop r> - recover ( c-addr u ior ) + iferror ( c-addr u ior ) >r 2dup file-status nip 0= r> and throw \ does it really not exist? r/w bin create-file throw - endtry + then endtry block-fid @ IF flush-blocks block-fid @ close-file throw THEN