--- gforth/errors.fs 1999/02/28 21:31:49 1.8 +++ gforth/errors.fs 2000/09/23 15:46:53 1.11 @@ -1,6 +1,6 @@ \ Load in error strings -\ Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc. +\ Copyright (C) 1995,1996,1997,1998,1999 Free Software Foundation, Inc. \ This file is part of Gforth. @@ -16,7 +16,7 @@ \ You should have received a copy of the GNU General Public License \ along with this program; if not, write to the Free Software -\ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +\ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. [IFUNDEF] linked \ defined by chains.fs?! : linked here over @ a, swap ! ; @@ -30,10 +30,10 @@ variable next-exception -2048 next-exception ! : exception ( addr u -- n ) \ exception- gforth - \G @var{n} is a previously unused THROW value in the range - \G (-4095...-256). Consecutive calls to EXCEPTION return + \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 error message. + \G @var{addr u} as an error message. next-exception @ errstring next-exception @ -1 next-exception +! ;