Diff for /gforth/startup.fs between versions 1.10 and 1.42

version 1.10, 1995/04/20 09:42:58 version 1.42, 2001/09/21 14:19:34
Line 1 Line 1
 #! /usr/stud/paysan/bin/forth  
 \ startup file  \ startup file
   
   \ Copyright (C) 1995,1996,1997,1998,2000 Free Software Foundation, Inc.
   
   \ This file is part of Gforth.
   
   \ Gforth is free software; you can redistribute it and/or
   \ modify it under the terms of the GNU General Public License
   \ as published by the Free Software Foundation; either version 2
   \ of the License, or (at your option) any later version.
   
   \ This program is distributed in the hope that it will be useful,
   \ but WITHOUT ANY WARRANTY; without even the implied warranty of
   \ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   \ GNU General Public License for more details.
   
   \ You should have received a copy of the GNU General Public License
   \ along with this program; if not, write to the Free Software
   \ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
   
   \ don't require except.fs, because except.fs is not in included-files
   \ (see exboot.fs)
   [IFUNDEF] try
   require except.fs \ included on command line
   [THEN]
   
 warnings off  warnings off
   include search.fs
   include environ.fs
   include envos.fs
   include errors.fs
   include extend.fs              \ load core-extended
   include hash.fs
   
   \ require interpretation.fs
 \ include float.fs  \ include float.fs
 \ include search-order.fs  \ include search.fs
 include glocals.fs  include glocals.fs
 include environ.fs  require stuff.fs
 \ include toolsext.fs  
 include wordinfo.fs  include wordinfo.fs
 include vt100.fs  include vt100.fs
 \ include colorize.fs  \ include colorize.fs
 include see.fs  include see.fs
   include see-ext.fs
   require simp-see.fs
 include bufio.fs  include bufio.fs
 include debug.fs  include debug.fs
 include history.fs  include history.fs
 \ include doskey.fs  s" os-class" environment? dup [IF] drop s" unix" compare 0= [THEN]
   [IF]
 include vt100key.fs  include vt100key.fs
 require debugging.fs  [ELSE]
   include doskey.fs
   [THEN]
   require debugs.fs
 require assert.fs  require assert.fs
 require blocks.fs  require blocks.fs
   require intcomp.fs
 0 Value $?  require savesys.fs
 : sh  '# parse cr system  to $? ;  require table.fs
   s" os-class" environment? dup [IF] drop s" unix" compare 0= [THEN]
   [IF]
   require ekey.fs
   [ELSE]
   require dosekey.fs
   [THEN]
   require backtrac.fs
   require code.fs
   
 \ define the environmental queries for all the loaded wordsets  \ define the environmental queries for all the loaded wordsets
 \ since the blocks wordset is loaded in a single file, its queries  \ since the blocks wordset is loaded in a single file, its queries
Line 52  true constant string Line 95  true constant string
 true constant string-ext  true constant string-ext
 set-current  set-current
   
   
   
 warnings on  warnings on
   
   require siteinit.fs

Removed from v.1.10  
changed lines
  Added in v.1.42


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