--- gforth/stuff.fs 2004/12/01 10:02:59 1.39 +++ gforth/stuff.fs 2004/12/31 13:23:58 1.41 @@ -1,6 +1,6 @@ \ miscelleneous words -\ Copyright (C) 1996,1997,1998,2000,2003 Free Software Foundation, Inc. +\ Copyright (C) 1996,1997,1998,2000,2003,2004 Free Software Foundation, Inc. \ This file is part of Gforth. @@ -300,3 +300,17 @@ interpret/compile: action-of ( interpret comp' action-of drop interpret/compile: what's ( interpretation "name" -- xt; compilation "name" -- ; run-time -- xt ) \ gforth-obsolete \G Old name of @code{action-of} + + +: typewhite ( addr n -- ) \ gforth +\G Like type, but white space is printed instead of the characters. + \ bounds u+do + 0 max bounds ?do + i c@ #tab = if \ check for tab + #tab + else + bl + then + emit + loop ; +