From e5c59face347b73b80fbd82a67ebb29a6cf95a57 Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Sat, 21 Apr 2007 19:43:11 +0000 Subject: [PATCH] Extend the stack size when pulling price quotes (#428133) Patch from Mike Alexander. BP git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15966 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/bin/gnucash-bin.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/gnucash-bin.c b/src/bin/gnucash-bin.c index d01ea8c559..8178f04efb 100644 --- a/src/bin/gnucash-bin.c +++ b/src/bin/gnucash-bin.c @@ -364,6 +364,8 @@ inner_main_add_price_quotes(void *closure, int argc, char **argv) SCM mod, add_quotes, scm_book, scm_result = SCM_BOOL_F; QofSession *session = NULL; + scm_c_eval_string("(debug-set! stack 200000)"); + mod = scm_c_resolve_module("gnucash price-quotes"); scm_set_current_module(mod);