summaryrefslogtreecommitdiff
path: root/libguile/gh_eval.c
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>1998-02-02 15:00:14 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>1998-02-02 15:00:14 +0000
commit39752bec0aea1cddb787ad577dae78645c146442 (patch)
tree10d5a0216a847af7cee2ec4a65c2ae918c934190 /libguile/gh_eval.c
parent660f41fa24a1196e355447a677f5a345f8dca2a9 (diff)
downloadguile-39752bec0aea1cddb787ad577dae78645c146442.tar.gz
* backtrace.c (display_error_body, display_backtrace_body),
coop-threads.c (scheme_body_bootstrip, c_body_bootstrip), gh_eval.c (eval_str_wrapper, eval_file_wrapper), init.c (invoke_main_func), root.c (cwdr_body), throw.c (cwss_body, scm_body_thunk, hbpca_body): Removed the second jmpbuf arg on body functions.
Diffstat (limited to 'libguile/gh_eval.c')
-rw-r--r--libguile/gh_eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/gh_eval.c b/libguile/gh_eval.c
index d214d9faf..b42899073 100644
--- a/libguile/gh_eval.c
+++ b/libguile/gh_eval.c
@@ -63,7 +63,7 @@ gh_eval_file (char *fname)
}
static SCM
-eval_str_wrapper (void *data, SCM jmpbuf)
+eval_str_wrapper (void *data)
{
/* gh_eval_t real_eval_proc = (gh_eval_t) (* ((gh_eval_t *) data)); */
@@ -97,7 +97,7 @@ gh_eval_str_with_stack_saving_handler (char *scheme_code)
}
static SCM
-eval_file_wrapper (void *data, SCM jmpbuf)
+eval_file_wrapper (void *data)
{
/* gh_eval_t real_eval_proc = (gh_eval_t) (* ((gh_eval_t *) data)); */