From d5ec85a76b9ece244402c95c2b2be9d2e40ff54c Mon Sep 17 00:00:00 2001 From: Dave Peticolas Date: Thu, 8 Nov 2001 00:32:51 +0000 Subject: [PATCH] Remove debugging output. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5796 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/report/locale-specific/us/gncmod-locale-reports-us.c | 5 +---- src/report/locale-specific/us/taxtxf.scm | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/report/locale-specific/us/gncmod-locale-reports-us.c b/src/report/locale-specific/us/gncmod-locale-reports-us.c index c4ab3207a8..3d2d811d92 100644 --- a/src/report/locale-specific/us/gncmod-locale-reports-us.c +++ b/src/report/locale-specific/us/gncmod-locale-reports-us.c @@ -42,16 +42,13 @@ gnc_module_init(int refcount) { return FALSE; } - printf("loaded gnc modules .. \n"); - /* load the report generation scheme code */ if(gh_eval_str("(use-modules (gnucash report taxtxf))") == SCM_BOOL_F) { printf("failed to load (gnucash report taxtxf)\n"); return FALSE; } - printf("loaded taxtxf module\n"); - + if(gh_eval_str("(use-modules (gnucash report locale-specific us))") == SCM_BOOL_F) { return FALSE; diff --git a/src/report/locale-specific/us/taxtxf.scm b/src/report/locale-specific/us/taxtxf.scm index 60f3585ee9..ad66eec954 100644 --- a/src/report/locale-specific/us/taxtxf.scm +++ b/src/report/locale-specific/us/taxtxf.scm @@ -27,7 +27,6 @@ ;; subtracts 2! see "(to-value" ;; depends must be outside module scope -- and should eventually go away. -(simple-format #t "loading taxtxf scheme code\n") (define-module (gnucash report taxtxf)) (use-modules (gnucash bootstrap) (g-wrapped gw-gnc)) ;; FIXME: delete after we finish modularizing.