summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2009-04-23 13:34:23 +0200
committerAndy Wingo <wingo@pobox.com>2009-04-24 14:34:23 +0200
commit7c72fe0bb5a6ef00c90f6988ce3178a45ed95f26 (patch)
tree9abed0561aff790da36d70670717fa963dd660e1
parent01c161ca11b19d56ce994cba477a8fc4aeb8ac43 (diff)
downloadguile-7c72fe0bb5a6ef00c90f6988ce3178a45ed95f26.tar.gz
ice-9 syncase now deprecated, woo
Remove #:use-module (ice-9 syncase) from lots of places, as it's no longer needed.
-rw-r--r--module/ice-9/null.scm1
-rw-r--r--module/ice-9/occam-channel.scm1
-rw-r--r--module/language/scheme/amatch.scm4
-rw-r--r--module/language/scheme/expand.scm1
-rw-r--r--module/srfi/srfi-11.scm1
-rw-r--r--module/srfi/srfi-39.scm1
-rw-r--r--module/system/base/pmatch.scm1
7 files changed, 1 insertions, 9 deletions
diff --git a/module/ice-9/null.scm b/module/ice-9/null.scm
index b9212e605..3f9f5b0a5 100644
--- a/module/ice-9/null.scm
+++ b/module/ice-9/null.scm
@@ -18,7 +18,6 @@
;;;; The null environment - only syntactic bindings
(define-module (ice-9 null)
- :use-module (ice-9 syncase)
:re-export-syntax (define quote lambda if set!
cond case and or
diff --git a/module/ice-9/occam-channel.scm b/module/ice-9/occam-channel.scm
index e28f73d3b..e04ecac5b 100644
--- a/module/ice-9/occam-channel.scm
+++ b/module/ice-9/occam-channel.scm
@@ -17,7 +17,6 @@
;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
(define-module (ice-9 occam-channel)
- #:use-syntax (ice-9 syncase)
#:use-module (oop goops)
#:use-module (ice-9 threads)
#:export-syntax (alt
diff --git a/module/language/scheme/amatch.scm b/module/language/scheme/amatch.scm
index 4ac973620..190b37f6a 100644
--- a/module/language/scheme/amatch.scm
+++ b/module/language/scheme/amatch.scm
@@ -1,7 +1,5 @@
(define-module (language scheme amatch)
- #:use-module (ice-9 syncase)
- #:export (amatch apat))
-;; FIXME: shouldn't have to export apat...
+ #:export (amatch))
;; This is exactly the same as pmatch except that it unpacks annotations
;; as needed.
diff --git a/module/language/scheme/expand.scm b/module/language/scheme/expand.scm
index 2ffefb318..cbf3f1862 100644
--- a/module/language/scheme/expand.scm
+++ b/module/language/scheme/expand.scm
@@ -23,7 +23,6 @@
#:use-module (language scheme amatch)
#:use-module (ice-9 expand-support)
#:use-module (ice-9 optargs)
- #:use-module ((ice-9 syncase) #:select (sc-macro))
#:use-module ((system base compile) #:select (syntax-error))
#:export (expand *expand-table* define-scheme-expander))
diff --git a/module/srfi/srfi-11.scm b/module/srfi/srfi-11.scm
index 9e17d6632..afa1730f1 100644
--- a/module/srfi/srfi-11.scm
+++ b/module/srfi/srfi-11.scm
@@ -37,7 +37,6 @@
;;; Code:
(define-module (srfi srfi-11)
- :use-module (ice-9 syncase)
:export-syntax (let-values let*-values))
(cond-expand-provide (current-module) '(srfi-11))
diff --git a/module/srfi/srfi-39.scm b/module/srfi/srfi-39.scm
index 086751170..87154d6df 100644
--- a/module/srfi/srfi-39.scm
+++ b/module/srfi/srfi-39.scm
@@ -35,7 +35,6 @@
;;; Code:
(define-module (srfi srfi-39)
- #:use-module (ice-9 syncase)
#:use-module (srfi srfi-16)
#:export (make-parameter)
diff --git a/module/system/base/pmatch.scm b/module/system/base/pmatch.scm
index 902fc49a5..5dae355e6 100644
--- a/module/system/base/pmatch.scm
+++ b/module/system/base/pmatch.scm
@@ -1,5 +1,4 @@
(define-module (system base pmatch)
- #:use-module (ice-9 syncase)
#:export (pmatch))
;; FIXME: shouldn't have to export ppat...