diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1998-02-02 15:00:14 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1998-02-02 15:00:14 +0000 |
commit | 39752bec0aea1cddb787ad577dae78645c146442 (patch) | |
tree | 10d5a0216a847af7cee2ec4a65c2ae918c934190 /libguile/root.c | |
parent | 660f41fa24a1196e355447a677f5a345f8dca2a9 (diff) | |
download | guile-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/root.c')
-rw-r--r-- | libguile/root.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/root.c b/libguile/root.c index 5de8e1942..46c42897c 100644 --- a/libguile/root.c +++ b/libguile/root.c @@ -220,7 +220,7 @@ struct cwdr_handler_data { With a little thought, we could replace this with scm_body_thunk, but I don't want to mess with that at the moment. */ static SCM -cwdr_body (void *data, SCM jmpbuf) +cwdr_body (void *data) { struct cwdr_body_data *c = (struct cwdr_body_data *) data; |