From 341b6ba44e6d60093cedd9857405121801b201cd Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Sun, 27 Feb 2011 15:02:20 -0800 Subject: [PATCH] bootstrap.io: fix load error --- basis/bootstrap/io/io.factor | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/basis/bootstrap/io/io.factor b/basis/bootstrap/io/io.factor index 45cd2a1ce2..789bb1556b 100644 --- a/basis/bootstrap/io/io.factor +++ b/basis/bootstrap/io/io.factor @@ -5,10 +5,8 @@ IN: bootstrap.io "bootstrap.compiler" require "bootstrap.threads" require -[ - "io.backend." { - { [ "io-backend" get ] [ "io-backend" get ] } - { [ os unix? ] [ "unix." os name>> append ] } - { [ os windows? ] [ "windows" ] } - } cond append require -] when +"io.backend." { + { [ "io-backend" get ] [ "io-backend" get ] } + { [ os unix? ] [ "unix." os name>> append ] } + { [ os windows? ] [ "windows" ] } +} cond append require