Bill Nottingham 918e2e9
commit c185afc1ffda00960af25c979d9e9b5359abccfc
Bill Nottingham 918e2e9
Author: Geert Janssens <janssens-geert@telenet.be>
Bill Nottingham 918e2e9
Date:   Mon Mar 21 15:10:30 2011 +0000
Bill Nottingham 918e2e9
Bill Nottingham 918e2e9
    Bug #615168: N_ in the root module
Bill Nottingham 918e2e9
    
Bill Nottingham 918e2e9
    Fix variable not found crasher.
Bill Nottingham 918e2e9
    
Bill Nottingham 918e2e9
    git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20440 57a11ea4-9604-0410-9ed3-97b8803252fd
Bill Nottingham 918e2e9
Bill Nottingham 918e2e9
diff --git a/src/app-utils/app-utils.scm b/src/app-utils/app-utils.scm
Bill Nottingham 918e2e9
index 3b00d50..7a114ef 100644
Bill Nottingham 918e2e9
--- a/src/app-utils/app-utils.scm
Bill Nottingham 918e2e9
+++ b/src/app-utils/app-utils.scm
Bill Nottingham 918e2e9
@@ -20,6 +20,7 @@
Bill Nottingham 918e2e9
 (use-modules (srfi srfi-1))
Bill Nottingham 918e2e9
 (use-modules (gnucash main)) ;; FIXME: delete after we finish modularizing.
Bill Nottingham 918e2e9
 (use-modules (gnucash gnc-module))
Bill Nottingham 918e2e9
+(use-modules (ice-9 syncase))
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
 (gnc:module-load "gnucash/engine" 0)
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
diff --git a/src/app-utils/c-interface.scm b/src/app-utils/c-interface.scm
Bill Nottingham 918e2e9
index 0f912a3..e6243d7 100644
Bill Nottingham 918e2e9
--- a/src/app-utils/c-interface.scm
Bill Nottingham 918e2e9
+++ b/src/app-utils/c-interface.scm
Bill Nottingham 918e2e9
@@ -15,8 +15,6 @@
Bill Nottingham 918e2e9
 ;; 51 Franklin Street, Fifth Floor    Fax:    +1-617-542-2652
Bill Nottingham 918e2e9
 ;; Boston, MA  02110-1301,  USA       gnu@gnu.org
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
-(use-modules (ice-9 syncase))
Bill Nottingham 918e2e9
-
Bill Nottingham 918e2e9
 (define (gnc:error->string tag args)
Bill Nottingham 918e2e9
   (define (write-error port)
Bill Nottingham 918e2e9
     (if (and (list? args) (not (null? args)))