From 67f5a932db379227ba9766e84b29f92436ab08ed Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Fri, 13 Mar 2009 19:40:54 -0500 Subject: [PATCH] Fix regexp.nfa to load if unicode.case is not already loaded --- basis/regexp/nfa/nfa.factor | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/basis/regexp/nfa/nfa.factor b/basis/regexp/nfa/nfa.factor index 2dc2c1798b..20be6b87d8 100644 --- a/basis/regexp/nfa/nfa.factor +++ b/basis/regexp/nfa/nfa.factor @@ -1,10 +1,10 @@ ! Copyright (C) 2008, 2009 Doug Coleman, Daniel Ehrenberg. ! See http://factorcode.org/license.txt for BSD license. -USING: accessors arrays assocs grouping kernel -locals math namespaces sequences fry quotations -math.order math.ranges vectors unicode.categories -regexp.transition-tables words sets hashtables combinators.short-circuit -unicode.case.private regexp.ast regexp.classes ; +USING: accessors arrays assocs grouping kernel locals math namespaces +sequences fry quotations math.order math.ranges vectors +unicode.categories regexp.transition-tables words sets hashtables +combinators.short-circuit unicode.case unicode.case.private regexp.ast +regexp.classes ; IN: regexp.nfa ! This uses unicode.case.private for ch>upper and ch>lower