Annotation of gforth/startup.fs, revision 1.10

1.1       anton       1: #! /usr/stud/paysan/bin/forth
                      2: \ startup file
                      3: 
                      4: warnings off
                      5: 
1.6       pazsan      6: \ include float.fs
                      7: \ include search-order.fs
                      8: include glocals.fs
1.3       anton       9: include environ.fs
1.1       anton      10: \ include toolsext.fs
                     11: include wordinfo.fs
1.2       pazsan     12: include vt100.fs
1.1       anton      13: \ include colorize.fs
                     14: include see.fs
                     15: include bufio.fs
                     16: include debug.fs
1.7       pazsan     17: include history.fs
                     18: \ include doskey.fs
1.8       pazsan     19: include vt100key.fs
1.9       anton      20: require debugging.fs
                     21: require assert.fs
1.10    ! anton      22: require blocks.fs
1.1       anton      23: 
                     24: 0 Value $?
                     25: : sh  '# parse cr system  to $? ;
1.10    ! anton      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: 
1.1       anton      56: 
                     57: warnings on

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