diff options
author | Andy Wingo <wingo@pobox.com> | 2009-11-27 21:17:42 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2009-12-01 21:00:26 +0100 |
commit | 504864b79fcdaf1c24785327b84190a041c30c0c (patch) | |
tree | 21bd3a667498af19aa96fa4f27710f735bbc2cec /libguile/eval.c | |
parent | 058234dd9c4d67240b9ca1c7f0ebfeed8037c2de (diff) | |
download | guile-504864b79fcdaf1c24785327b84190a041c30c0c.tar.gz |
remove unused scm_eval_stack var
* libguile/private-options.h:
* libguile/eval.c (scm_eval_stack): Remove declaration and definition of
unused scm_eval_stack variable.
Diffstat (limited to 'libguile/eval.c')
-rw-r--r-- | libguile/eval.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libguile/eval.c b/libguile/eval.c index 151e9ba99..8f2f5d02f 100644 --- a/libguile/eval.c +++ b/libguile/eval.c @@ -2931,8 +2931,6 @@ int scm_check_apply_p; int scm_check_exit_p; int scm_check_memoize_p; -long scm_eval_stack; - scm_t_option scm_eval_opts[] = { { SCM_OPTION_INTEGER, "stack", 22000, "Size of thread stacks (in machine words)." }, { 0 } @@ -3011,7 +3009,6 @@ SCM_DEFINE (scm_eval_options_interface, "eval-options-interface", 0, 1, 0, ans = scm_options (setting, scm_eval_opts, FUNC_NAME); - scm_eval_stack = SCM_EVAL_STACK * sizeof (void *); scm_dynwind_end (); return ans; |