Diff for /gforth/extend.fs between versions 1.16 and 1.26

version 1.16, 1996/02/13 11:12:17 version 1.26, 1997/06/23 16:57:02
Line 30  decimal Line 30  decimal
   
 \ VALUE 2>R 2R> 2R@                                     17may93jaw  \ VALUE 2>R 2R> 2R@                                     17may93jaw
   
 : value ( w -- ) \ core-ext  
   (constant) , ;  
 \ !! 2value  \ !! 2value
   
 : 2Literal ( compilation w1 w2 -- ; run-time  -- w1 w2 ) \ double two-literal  : 2Literal ( compilation w1 w2 -- ; run-time  -- w1 w2 ) \ double two-literal
Line 39  decimal Line 37  decimal
   
 ' drop alias d>s ( d -- n ) \ double            d_to_s  ' drop alias d>s ( d -- n ) \ double            d_to_s
   
 : dabs ( d1 -- d2 ) \ double  
     dup 0< IF dnegate THEN ;  
   
 : m*/ ( d1 n2 u3 -- dqout ) \ double m-star-slash  : m*/ ( d1 n2 u3 -- dqout ) \ double m-star-slash
     >r s>d >r abs -rot      >r s>d >r abs -rot
     s>d r> xor r> swap >r >r dabs rot tuck um* 2swap um*      s>d r> xor r> swap >r >r dabs rot tuck um* 2swap um*
Line 78  decimal Line 73  decimal
 : C" ( compilation "...<quote>" -- ; run-time  -- c-addr ) \ core-ext c-quote  : C" ( compilation "...<quote>" -- ; run-time  -- c-addr ) \ core-ext c-quote
     [char] " parse postpone CLiteral ; immediate restrict      [char] " parse postpone CLiteral ; immediate restrict
   
 \ UNUSED                                                17may93jaw  
   
 : unused ( -- u ) \ core-ext  
     s0 @ 512 -        \ for stack  
     here - ;  
   
 \ [COMPILE]                                             17may93jaw  \ [COMPILE]                                             17may93jaw
   
 : [compile] ( compilation "name" -- ; run-time ? -- ? ) \ core-ext bracket-compile  : [compile] ( compilation "name" -- ; run-time ? -- ? ) \ core-ext bracket-compile
     ' compile, ; immediate      comp' drop compile, ; immediate
   
 \ MARKER                                                17may93jaw  \ MARKER                                                17may93jaw
   
Line 97  decimal Line 86  decimal
 \ CONVERT                                               17may93jaw  \ CONVERT                                               17may93jaw
   
 : convert ( ud1 c-addr1 -- ud2 c-addr2 ) \ core-ext  : convert ( ud1 c-addr1 -- ud2 c-addr2 ) \ core-ext
     \ obsolescent; supersedet by @code{>number}.      \G obsolescent; superseded by @code{>number}.
     true >number drop ;      char+ true >number drop ;
   
 \ ERASE                                                 17may93jaw  \ ERASE                                                 17may93jaw
   
Line 125  decimal Line 114  decimal
     REPEAT      REPEAT
     2drop 2drop  rdrop false ;      2drop 2drop  rdrop false ;
   
 \ ROLL                                                  17may93jaw  
   
 : roll  ( x0 x1 .. xn n -- x1 .. xn x0 ) \ core-ext  
   dup 1+ pick >r  
   cells sp@ cell+ dup cell+ rot move drop r> ;  
   
 \ SOURCE-ID SAVE-INPUT RESTORE-INPUT                    11jun93jaw  \ SOURCE-ID SAVE-INPUT RESTORE-INPUT                    11jun93jaw
   
 : source-id ( -- 0 | -1 | fileid ) \ core-ext source-i-d  : source-id ( -- 0 | -1 | fileid ) \ core-ext,file source-i-d
   loadfile @ dup 0= IF  drop sourceline# 0 min  THEN ;    loadfile @ dup 0= IF  drop sourceline# 0 min  THEN ;
   
 : save-input ( -- x1 .. xn n ) \ core-ext  : save-input ( -- x1 .. xn n ) \ core-ext
Line 170  decimal Line 153  decimal
     >in !      >in !
     false ;      false ;
   
 \ : save-input ( -- x1 .. xn n ) \ core-ext  
 \   >in @  
 \   loadfile @ ?dup  
 \   IF    dup file-position throw sourceline# >tib @ 6  
 \         #tib @ >tib +!  
 \   ELSE  sourceline# blk @ linestart @ >tib @ 5 THEN  
 \ ;  
   
 \ : restore-input ( x1 .. xn n -- flag ) \ core-ext  
 \   swap >tib !  
 \   6 = IF   loadline ! rot dup loadfile !  
 \            reposition-file IF drop true EXIT THEN  
 \       ELSE linestart ! blk !  
 \            dup sourceline# <> IF 2drop true EXIT THEN  
 \            loadline !  
 \       THEN  
 \   >in ! false ;  
   
   
   
 \ This things we don't need, but for being complete... jaw  \ This things we don't need, but for being complete... jaw
   
 \ EXPECT SPAN                                           17may93jaw  \ EXPECT SPAN                                           17may93jaw
Line 204  variable span ( -- a-addr ) \ core-ext Line 167  variable span ( -- a-addr ) \ core-ext
         key decode ( maxlen span c-addr pos2 flag )          key decode ( maxlen span c-addr pos2 flag )
         >r 2over = r> or          >r 2over = r> or
     UNTIL      UNTIL
     type-rest drop      2 pick swap /string type
     2drop nip span ! ;      nip span ! ;
   

Removed from v.1.16  
changed lines
  Added in v.1.26


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