Diff for /gforth/environ.fs between versions 1.10 and 1.14

version 1.10, 1997/01/14 16:30:50 version 1.14, 1997/08/31 19:31:28
Line 29  Create environment-wordlist  wordlist dr Line 29  Create environment-wordlist  wordlist dr
         false          false
     endif ;      endif ;
   
   : e? name environment? ; immediate
   
   : has? name environment? IF ELSE false THEN ;
   
   : $has? environment? IF ELSE false THEN ;
   
 environment-wordlist set-current  environment-wordlist set-current
 get-order environment-wordlist swap 1+ set-order  get-order environment-wordlist swap 1+ set-order
   
Line 51  true constant CORE-EXT Line 57  true constant CORE-EXT
 -1 MAX-N 2constant MAX-D  -1 MAX-N 2constant MAX-D
 -1. 2constant MAX-UD  -1. 2constant MAX-UD
   
 0 1 2constant gforth \ minor major version  version-string 2constant gforth \ version string (for versions>0.3.0)
   \ the version strings of the various versions are guaranteed to be
   \ sorted lexicographically
   
 : return-stack-cells ( -- n )  : return-stack-cells ( -- n )
     [ forthstart 6 cells + ] literal @ cell / ;      [ forthstart 6 cells + ] literal @ cell / ;
Line 60  true constant CORE-EXT Line 68  true constant CORE-EXT
     [ forthstart 4 cells + ] literal @ cell / ;      [ forthstart 4 cells + ] literal @ cell / ;
   
 : floating-stack ( -- n )  : floating-stack ( -- n )
     [ forthstart 5 cells + ] literal @ float / ;      [ forthstart 5 cells + ] literal @
       [IFDEF] float  float  [ELSE]  [ 1 floats ] Literal [THEN] / ;
   
 \ !! max-float  \ !! max-float
 15 constant #locals \ 1000 64 /  15 constant #locals \ 1000 64 /

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


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