| \ ERRORE.FS English error strings 9may93jaw |
\ ERRORE.FS English error strings 9may93jaw |
| |
|
| \ Copyright (C) 1995 Free Software Foundation, Inc. |
\ Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc. |
| |
|
| \ This file is part of Gforth. |
\ This file is part of Gforth. |
| |
|
| \ The errors are defined by a linked list, for easy adding |
\ The errors are defined by a linked list, for easy adding |
| \ and deleting. Speed is not neccassary at this point. |
\ and deleting. Speed is not neccassary at this point. |
| |
|
| |
require ./io.fs |
| |
require ./nio.fs |
| |
|
| AVariable ErrLink \ Linked list entry point |
AVariable ErrLink \ Linked list entry point |
| NIL ErrLink ! |
NIL ErrLink ! |
| |
|
| \ error numbers between -512 and -2047 are for OS errors and are |
\ error numbers between -512 and -2047 are for OS errors and are |
| \ handled with strerror |
\ handled with strerror |
| |
|
| |
has? OS [IF] |
| : >stderr ( -- ) |
: >stderr ( -- ) |
| r> outfile-id >r stderr to outfile-id |
r> outfile-id >r stderr to outfile-id |
| >exec r> to outfile-id ; |
>exec r> to outfile-id ; |
| |
[ELSE] |
| |
: >stderr ; |
| |
[THEN] |
| |
|
| : .error ( n -- ) |
: .error ( n -- ) |
| >stderr |
>stderr |
| cr ." Error: " |
|
| ErrLink |
ErrLink |
| BEGIN @ dup |
BEGIN @ dup |
| WHILE |
WHILE |
| 512 + negate strerror type EXIT |
512 + negate strerror type EXIT |
| THEN |
THEN |
| [ [THEN] ] |
[ [THEN] ] |
| . ; |
." error " dec. ; |