diff options
author | Gary Houston <ghouston@arglist.com> | 1996-10-12 21:59:40 +0000 |
---|---|---|
committer | Gary Houston <ghouston@arglist.com> | 1996-10-12 21:59:40 +0000 |
commit | 01f61221f4341a877ac648aaa6c0d9f5bb6a488c (patch) | |
tree | 4e8468560a65396ac4339bcf1783b3163852bd25 /libguile/stackchk.c | |
parent | 9518bec3de83ce1e3986fa28ee05373d29d9716f (diff) | |
download | guile-01f61221f4341a877ac648aaa6c0d9f5bb6a488c.tar.gz |
* error.c, eval.c, load.c, stackchk.c: use scm_error not lgh_error.
* __scm.h (lgh_error): removed, lgh shouldn't be in libguile.
* stime.c, stime.h: use SCM_P method.
Diffstat (limited to 'libguile/stackchk.c')
-rw-r--r-- | libguile/stackchk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/stackchk.c b/libguile/stackchk.c index b10373e7b..5d08ff391 100644 --- a/libguile/stackchk.c +++ b/libguile/stackchk.c @@ -57,7 +57,7 @@ void scm_report_stack_overflow () { scm_stack_checking_enabled_p = 0; - lgh_error (scm_stack_overflow_key, + scm_error (scm_stack_overflow_key, NULL, "Stack overflow", SCM_BOOL_F, |