From 131c8e93d4d3d845610f754359d0c5c63140e799 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Thu, 25 Jul 2013 22:12:49 +0900 Subject: [PATCH] Removing uneeded imports. --- lib/chibi/regexp.sld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/chibi/regexp.sld b/lib/chibi/regexp.sld index d813e30c..6cd874c3 100644 --- a/lib/chibi/regexp.sld +++ b/lib/chibi/regexp.sld @@ -6,11 +6,11 @@ rx-match? rx-match-num-matches rx-match-submatch rx-match-submatch/list rx-match->list rx-match->sexp) - (import (srfi 9) (srfi 33) (srfi 38) (srfi 69)) + (import (srfi 33) (srfi 69)) ;; Chibi's char-set library is more factored than SRFI-14. (cond-expand (chibi - (import (chibi) (chibi char-set) (chibi char-set full))) + (import (chibi) (srfi 9) (chibi char-set) (chibi char-set full))) (else (import (scheme base) (srfi 14)))) ;; Use string-cursors where available.