Diff for /gforth/kernel/tools.fs between versions 1.10 and 1.20

version 1.10, 1999/03/23 20:24:27 version 1.20, 2006/02/26 17:23:47
Line 1 Line 1
 \ TOOLS.FS     Toolkit extentions                      2may93jaw  \ TOOLS.FS     Toolkit extentions                      2may93jaw
   
 \ Copyright (C) 1995,1998 Free Software Foundation, Inc.  \ Copyright (C) 1995,1998,1999,2001,2003 Free Software Foundation, Inc.
   
 \ This file is part of Gforth.  \ This file is part of Gforth.
   
Line 16 Line 16
   
 \ You should have received a copy of the GNU General Public License  \ You should have received a copy of the GNU General Public License
 \ along with this program; if not, write to the Free Software  \ along with this program; if not, write to the Free Software
 \ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  \ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
   
 \ May be cross-compiled  \ May be cross-compiled
   
   require ./io.fs         \ type ...
   require ./nio.fs        \ . <# ...
   require ./int.fs        \ wordlist-id ..
   
 hex  hex
   
 \ .S            CORE / CORE EXT                         9may93jaw  \ .S            CORE / CORE EXT                         9may93jaw
Line 75  Variable /dump Line 79  Variable /dump
   
 \ words visible in roots                               14may93py  \ words visible in roots                               14may93py
   
 include  ../termsize.fs  include  ./../termsize.fs
   
 : words ( -- ) \ tools  : wordlist-words ( wid -- ) \ gforth
     \G ** this will not get annotated. See other defn in search.fs .. **      \G Display the contents of the wordlist wid.
     cr 0 context @ wordlist-id      [ has? ec 0= [IF] ] wordlist-id [ [THEN] ]
       0 swap cr
     BEGIN      BEGIN
         @ dup          @ dup
     WHILE      WHILE
Line 92  include  ../termsize.fs Line 97  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
       context @ 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.10  
changed lines
  Added in v.1.20


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