--- gforth/kernel/cloop.fs 2000/09/23 15:47:09 1.3 +++ gforth/kernel/cloop.fs 2003/08/25 14:17:53 1.6 @@ -1,6 +1,6 @@ \ Structural Conditionals, loops part 12dec92py -\ Copyright (C) 1995,1996,1997,1999 Free Software Foundation, Inc. +\ Copyright (C) 1995,1996,1997,1999,2001,2003 Free Software Foundation, Inc. \ This file is part of Gforth. @@ -23,8 +23,8 @@ Variable leavings : (leave) here leavings @ , leavings ! ; -: LEAVE compile branch (leave) ; immediate restrict -: ?LEAVE compile 0= compile ?branch (leave) ; +: LEAVE postpone branch (leave) ; immediate restrict +: ?LEAVE postpone 0= postpone ?branch (leave) ; immediate restrict : DONE ( addr -- ) leavings @ @@ -33,18 +33,18 @@ Variable leavings \ Structural Conditionals 12dec92py -: DO compile (do) here ; immediate restrict +: DO postpone (do) here ; immediate restrict -: ?DO compile (?do) (leave) here ; +: ?DO postpone (?do) (leave) here ; immediate restrict -: FOR compile (for) here ; immediate restrict +: FOR postpone (for) here ; immediate restrict -: loop] dup