--- gforth/stuff.fs 2004/11/28 20:20:37 1.37 +++ gforth/stuff.fs 2004/12/28 22:37:07 1.40 @@ -289,6 +289,8 @@ AUser CSP \ defer stuff +[ifundef] defer@ : defer@ >body @ ; [then] + :noname ' defer@ ; :noname postpone ['] postpone defer@ ; interpret/compile: action-of ( interpretation "name" -- xt; compilation "name" -- ; run-time -- xt ) \ gforth @@ -297,4 +299,18 @@ interpret/compile: action-of ( interpret ' action-of 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} \ No newline at end of file +\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 ; +