--- gforth/errors.fs 2002/04/01 15:34:34 1.12 +++ gforth/errors.fs 2007/12/31 18:40:24 1.18 @@ -1,12 +1,12 @@ \ Load in error strings -\ Copyright (C) 1995,1996,1997,1998,1999 Free Software Foundation, Inc. +\ Copyright (C) 1995,1996,1997,1998,1999,2003,2007 Free Software Foundation, Inc. \ This file is part of Gforth. \ Gforth is free software; you can redistribute it and/or \ modify it under the terms of the GNU General Public License -\ as published by the Free Software Foundation; either version 2 +\ as published by the Free Software Foundation, either version 3 \ of the License, or (at your option) any later version. \ This program is distributed in the hope that it will be useful, @@ -15,12 +15,10 @@ \ GNU General Public License for more details. \ 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., 59 Temple Place, Suite 330, Boston, MA 02111, USA. +\ along with this program. If not, see http://www.gnu.org/licenses/. -[IFUNDEF] linked \ defined by chains.fs?! -: linked here over @ a, swap ! ; -[THEN] +: linked ( addr -- ) + here over @ a, swap ! ; : errstring ( addr u n -- ) ErrLink linked @@ -90,8 +88,9 @@ decimal \ Gforth's errors: -2048 s" Cannot tick compile-only word (try COMP' ... DROP)" rot errstring +-2049 s" Write to broken pipe" rot errstring -variable next-exception -2049 next-exception ! +variable next-exception -2050 next-exception ! : exception ( addr u -- n ) \ exception- gforth \G @var{n} is a previously unused @code{throw} value in the range @@ -102,4 +101,6 @@ variable next-exception -2049 next-excep next-exception @ -1 next-exception +! ; +-2049 constant broken-pipe-error ( -- n ) \ gforth +\G the error number for a broken pipe