]> gitweb.factorcode.org Git - factor.git/commitdiff
Load debugger.{unix,windows} later on in bootstrap, because lopading it before the...
authorSlava Pestov <slava@factorcode.org>
Thu, 6 May 2010 21:41:00 +0000 (17:41 -0400)
committerSlava Pestov <slava@factorcode.org>
Thu, 6 May 2010 21:41:00 +0000 (17:41 -0400)
basis/bootstrap/tools/tools.factor
basis/debugger/debugger.factor

index 51f44025c9c7fe42d0826d7d6fcec1a06d5ec043..c76d4f78981347deacae44a481f4a4ae89d5541b 100644 (file)
@@ -1,4 +1,4 @@
-USING: vocabs.loader sequences ;
+USING: vocabs.loader sequences system combinators ;
 IN: bootstrap.tools
 
 {
@@ -23,3 +23,8 @@ IN: bootstrap.tools
     "vocabs.refresh"
     "vocabs.refresh.monitor"
 } [ require ] each
+
+{
+    { [ os windows? ] [ "debugger.windows" require ] }
+    { [ os unix? ] [ "debugger.unix" require ] }
+} cond
index 8856871f1126c37e3f4d0719a5ccd3628772debb..eca34c2526daddb4cecb1fafeb6b2feeab3c98d9 100644 (file)
@@ -355,8 +355,3 @@ M: not-found-in-roots summary drop "Cannot resolve vocab: path" ;
 M: wrong-values summary drop "Quotation's stack effect does not match call site" ;
 
 M: stack-effect-omits-dashes summary drop "Stack effect must contain “--”" ;
-
-{
-    { [ os windows? ] [ "debugger.windows" require ] }
-    { [ os unix? ] [ "debugger.unix" require ] }
-} cond