File:  [gforth] / gforth / startup.fs
Revision 1.10: download - view: text, annotated - select for diffs
Thu Apr 20 09:42:58 1995 UTC (29 years ago) by anton
Branches: MAIN
CVS tags: HEAD
added "system documentation requirements" section to gforth.ds.
added answers for environmental queries for wordsets.
changed W/O file access mode from "w+" to "w".
S" now uses a buffer
BIN is now idempotent
added FILE-STATUS
some other minor changes and bug fixes.

    1: #! /usr/stud/paysan/bin/forth
    2: \ startup file
    3: 
    4: warnings off
    5: 
    6: \ include float.fs
    7: \ include search-order.fs
    8: include glocals.fs
    9: include environ.fs
   10: \ include toolsext.fs
   11: include wordinfo.fs
   12: include vt100.fs
   13: \ include colorize.fs
   14: include see.fs
   15: include bufio.fs
   16: include debug.fs
   17: include history.fs
   18: \ include doskey.fs
   19: include vt100key.fs
   20: require debugging.fs
   21: require assert.fs
   22: require blocks.fs
   23: 
   24: 0 Value $?
   25: : sh  '# parse cr system  to $? ;
   26: 
   27: \ define the environmental queries for all the loaded wordsets
   28: \ since the blocks wordset is loaded in a single file, its queries
   29: \ are defined there
   30: \ queries for other things than presence of a wordset are answered
   31: \ in environ.fs
   32: get-current environment-wordlist set-current
   33: true constant double
   34: true constant double-ext
   35: true constant exception
   36: true constant exception-ext
   37: true constant facility
   38: \ !! facility-ext
   39: true constant file
   40: true constant file-ext
   41: true constant floating
   42: true constant floating-ext
   43: true constant locals
   44: true constant locals-ext
   45: true constant memory-alloc
   46: true constant memory-alloc-ext
   47: true constant tools
   48: \ !! tools-ext
   49: true constant search-order
   50: true constant search-order-ext
   51: true constant string
   52: true constant string-ext
   53: set-current
   54: 
   55: 
   56: 
   57: warnings on

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