1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 12:20:20 +02:00

* error.c, error.h: Made error keys globally accessible.

Applications might want to test for these or use them in a direct
call to scm_error.
This commit is contained in:
Mikael Djurfeldt 2001-09-20 08:11:26 +00:00
parent e45b0d385c
commit c0b76df451
3 changed files with 19 additions and 7 deletions

View file

@ -48,6 +48,14 @@
extern int scm_ints_disabled;
extern SCM scm_system_error_key;
extern SCM scm_num_overflow_key;
extern SCM scm_out_of_range_key;
extern SCM scm_args_number_key;
extern SCM scm_arg_type_key;
extern SCM scm_memory_alloc_key;
extern SCM scm_misc_error_key;
extern void scm_error (SCM key, const char *subr, const char *message,