Diff for /gforth/kernel/tools.fs between versions 1.16 and 1.25

version 1.16, 2000/09/23 15:47:12 version 1.25, 2007/07/06 12:54:57
Line 1 Line 1
 \ TOOLS.FS     Toolkit extentions                      2may93jaw  \ TOOLS.FS     Toolkit extentions                      2may93jaw
   
 \ Copyright (C) 1995,1998,1999 Free Software Foundation, Inc.  \ Copyright (C) 1995,1998,1999,2001,2003,2006 Free Software Foundation, Inc.
   
 \ This file is part of Gforth.  \ This file is part of Gforth.
   
Line 28  hex Line 28  hex
   
 \ .S            CORE / CORE EXT                         9may93jaw  \ .S            CORE / CORE EXT                         9may93jaw
   
 variable maxdepth-.s  variable maxdepth-.s ( -- addr ) \ gforth maxdepth-dot-s
   \G A variable containing 9 by default.  @code{.s} and @code{f.s}
   \G display at most that many stack items.
 9 maxdepth-.s !  9 maxdepth-.s !
   
 : .s ( -- ) \ tools dot-s  : .s ( -- ) \ tools dot-s
     \G Display the number of items on the data stack,  \G Display the number of items on the data stack, followed by a list
     \G followed by a list of the items; TOS is the right-most item.  \G of the items (but not more than specified by @code{maxdepth-.s};
   \G TOS is the right-most item.
     ." <" depth 0 .r ." > "      ." <" depth 0 .r ." > "
     depth 0 max maxdepth-.s @ min      depth 0 max maxdepth-.s @ min
     dup 0      dup 0
Line 81  Variable /dump Line 84  Variable /dump
   
 include  ./../termsize.fs  include  ./../termsize.fs
   
 : words  : wordlist-words ( wid -- ) \ gforth
     \G ** this will not get annotated. See other defn in search.fs .. **      \G Display the contents of the wordlist wid.
     \G It does not work to use "wordset-" prefix since this file is glossed      [ has? ec 0= [IF] ] wordlist-id [ [THEN] ]
     \G by cross.fs which doesn't have the same functionalty as makedoc.fs      0 swap cr
     cr 0 context @ wordlist-id  
     BEGIN      BEGIN
         @ dup          @ dup
     WHILE      WHILE
Line 98  include  ./../termsize.fs Line 100  include  ./../termsize.fs
     REPEAT      REPEAT
     2drop ;      2drop ;
   
   : words
       \G ** this will not get annotated. See other defn in search.fs .. **
       \G It does not work to use "wordset-" prefix since this file is glossed
       \G by cross.fs which doesn't have the same functionalty as makedoc.fs
       [ has? ec 0= [IF] ] context @ [ [ELSE] ] forth-wordlist [ [THEN] ]
       wordlist-words ;
   
 ' words alias vlist ( -- ) \ gforth  ' words alias vlist ( -- ) \ gforth
 \g Old (pre-Forth-83) name for @code{WORDS}.  \g Old (pre-Forth-83) name for @code{WORDS}.

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


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