Bill Nottingham 918e2e9
commit 42600d30188a4ee11c815b72066399496ed9854c
Bill Nottingham 918e2e9
Author: Geert Janssens <janssens-geert@telenet.be>
Bill Nottingham 918e2e9
Date:   Mon Mar 21 15:09:54 2011 +0000
Bill Nottingham 918e2e9
Bill Nottingham 918e2e9
    [PATCH 2/4] Bug #615168: Remove instances of (use-modules (ice-9 slib))
Bill Nottingham 918e2e9
    
Bill Nottingham 918e2e9
    There are no more instances of (require ...), so Guile's slib support is
Bill Nottingham 918e2e9
    no longer needed.
Bill Nottingham 918e2e9
    
Bill Nottingham 918e2e9
    Patch by Andy Wingo.
Bill Nottingham 918e2e9
    
Bill Nottingham 918e2e9
    git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20436 57a11ea4-9604-0410-9ed3-97b8803252fd
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 10837a4..548e3bb 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,7 +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 slib))
Bill Nottingham 918e2e9
 (use-modules (ice-9 syncase))
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
 (define (gnc:error->string tag args)
Bill Nottingham 918e2e9
diff --git a/src/report/business-reports/aging.scm b/src/report/business-reports/aging.scm
Bill Nottingham 918e2e9
index 60beb9e..6047baa 100644
Bill Nottingham 918e2e9
--- a/src/report/business-reports/aging.scm
Bill Nottingham 918e2e9
+++ b/src/report/business-reports/aging.scm
Bill Nottingham 918e2e9
@@ -26,7 +26,6 @@
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
 (define-module (gnucash report aging))
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
-(use-modules (ice-9 slib))
Bill Nottingham 918e2e9
 (use-modules (gnucash main))
Bill Nottingham 918e2e9
 (use-modules (gnucash printf))
Bill Nottingham 918e2e9
 (use-modules (gnucash gnc-module))
Bill Nottingham 918e2e9
diff --git a/src/report/business-reports/easy-invoice.scm b/src/report/business-reports/easy-invoice.scm
Bill Nottingham 918e2e9
index 13e0adb..10d74e3 100644
Bill Nottingham 918e2e9
--- a/src/report/business-reports/easy-invoice.scm
Bill Nottingham 918e2e9
+++ b/src/report/business-reports/easy-invoice.scm
Bill Nottingham 918e2e9
@@ -31,7 +31,6 @@
Bill Nottingham 918e2e9
 (define-module (gnucash report easy-invoice))
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
 (use-modules (srfi srfi-1))
Bill Nottingham 918e2e9
-(use-modules (ice-9 slib))
Bill Nottingham 918e2e9
 (use-modules (gnucash printf))
Bill Nottingham 918e2e9
 (use-modules (gnucash gnc-module))
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
diff --git a/src/report/business-reports/fancy-invoice.scm b/src/report/business-reports/fancy-invoice.scm
Bill Nottingham 918e2e9
index 344c9b5..f6563c1 100644
Bill Nottingham 918e2e9
--- a/src/report/business-reports/fancy-invoice.scm
Bill Nottingham 918e2e9
+++ b/src/report/business-reports/fancy-invoice.scm
Bill Nottingham 918e2e9
@@ -49,7 +49,6 @@
Bill Nottingham 918e2e9
 (define-module (gnucash report fancy-invoice))
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
 (use-modules (srfi srfi-1))
Bill Nottingham 918e2e9
-(use-modules (ice-9 slib))
Bill Nottingham 918e2e9
 (use-modules (gnucash printf))
Bill Nottingham 918e2e9
 (use-modules (gnucash gnc-module))
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
diff --git a/src/report/business-reports/invoice.scm b/src/report/business-reports/invoice.scm
Bill Nottingham 918e2e9
index 32cf062..5e7ca86 100644
Bill Nottingham 918e2e9
--- a/src/report/business-reports/invoice.scm
Bill Nottingham 918e2e9
+++ b/src/report/business-reports/invoice.scm
Bill Nottingham 918e2e9
@@ -25,7 +25,6 @@
Bill Nottingham 918e2e9
 (define-module (gnucash report invoice))
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
 (use-modules (srfi srfi-1))
Bill Nottingham 918e2e9
-(use-modules (ice-9 slib))
Bill Nottingham 918e2e9
 (use-modules (gnucash printf))
Bill Nottingham 918e2e9
 (use-modules (gnucash gnc-module))
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
diff --git a/src/report/report-system/report-system.scm b/src/report/report-system/report-system.scm
Bill Nottingham 918e2e9
index aaa1a3e..ca11ae2 100644
Bill Nottingham 918e2e9
--- a/src/report/report-system/report-system.scm
Bill Nottingham 918e2e9
+++ b/src/report/report-system/report-system.scm
Bill Nottingham 918e2e9
@@ -7,7 +7,6 @@
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
 (define-module (gnucash report report-system))
Bill Nottingham 918e2e9
 (use-modules (gnucash main)) ;; FIXME: delete after we finish modularizing.
Bill Nottingham 918e2e9
-(use-modules (ice-9 slib))
Bill Nottingham 918e2e9
 (use-modules (ice-9 regex))
Bill Nottingham 918e2e9
 (use-modules (srfi srfi-1))
Bill Nottingham 918e2e9
 (use-modules (srfi srfi-19))
Bill Nottingham 918e2e9
diff --git a/src/report/standard-reports/standard-reports.scm b/src/report/standard-reports/standard-reports.scm
Bill Nottingham 918e2e9
index d30b9a3..c51eea7 100644
Bill Nottingham 918e2e9
--- a/src/report/standard-reports/standard-reports.scm
Bill Nottingham 918e2e9
+++ b/src/report/standard-reports/standard-reports.scm
Bill Nottingham 918e2e9
@@ -6,7 +6,6 @@
Bill Nottingham 918e2e9
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Bill Nottingham 918e2e9
 
Bill Nottingham 918e2e9
 (define-module (gnucash report standard-reports))
Bill Nottingham 918e2e9
-(use-modules (ice-9 slib))
Bill Nottingham 918e2e9
 (use-modules (srfi srfi-13))
Bill Nottingham 918e2e9
 (use-modules (gnucash main)) ;; FIXME: delete after we finish modularizing.
Bill Nottingham 918e2e9
 (use-modules (gnucash core-utils))