Diff for /gforth/errors.fs between versions 1.11 and 1.12

version 1.11, 2000/09/23 15:46:53 version 1.12, 2002/04/01 15:34:34
Line 27 Line 27
     ,      ,
     string, align ;      string, align ;
   
 variable next-exception -2048 next-exception !  
   
 : exception ( addr u -- n ) \ exception- gforth  
     \G @var{n} is a previously unused @code{throw} value in the range  
     \G (-4095...-256). Consecutive calls to @code{exception} return  
     \G consecutive decreasing numbers. Gforth uses the string  
     \G @var{addr u} as an error message.  
     next-exception @ errstring  
     next-exception @  
     -1 next-exception +! ;  
   
 decimal  decimal
   
 -1 s" Aborted" rot errstring  -1 s" Aborted" rot errstring
Line 97  decimal Line 86  decimal
 -56 s" QUIT" rot errstring  -56 s" QUIT" rot errstring
 -57 s" Error in sending or receiving a character" rot errstring  -57 s" Error in sending or receiving a character" rot errstring
 -58 s" [IF], [ELSE], [THEN] error" rot errstring  -58 s" [IF], [ELSE], [THEN] error" rot errstring
   
   \ Gforth's errors:
   
   -2048 s" Cannot tick compile-only word (try COMP' ... DROP)" rot errstring
   
   variable next-exception -2049 next-exception !
   
   : exception ( addr u -- n ) \ exception- gforth
       \G @var{n} is a previously unused @code{throw} value in the range
       \G (-4095...-256). Consecutive calls to @code{exception} return
       \G consecutive decreasing numbers. Gforth uses the string
       \G @var{addr u} as an error message.
       next-exception @ errstring
       next-exception @
       -1 next-exception +! ;
   
   

Removed from v.1.11  
changed lines
  Added in v.1.12


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