From b3a4c89c120b1ce2da76ff1b1be207ca156fd531 Mon Sep 17 00:00:00 2001 From: Eduardo Cavazos Date: Sat, 16 Feb 2008 03:43:51 -0600 Subject: [PATCH 1/3] builder: clean up using --- extra/builder/builder.factor | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/extra/builder/builder.factor b/extra/builder/builder.factor index cd17a32255..4e9e32421d 100644 --- a/extra/builder/builder.factor +++ b/extra/builder/builder.factor @@ -1,11 +1,7 @@ -USING: kernel parser io io.files io.launcher io.sockets hashtables math threads - arrays system continuations namespaces sequences splitting math.parser - prettyprint tools.time calendar bake vars http.client - combinators bootstrap.image bootstrap.image.download - combinators.cleave benchmark - classes strings quotations words parser-combinators new-slots accessors - assocs.lib smtp builder.util ; +USING: kernel namespaces sequences splitting system combinators continuations + parser io io.files io.launcher io.sockets prettyprint threads + bootstrap.image benchmark accessors vars bake smtp builder.util ; IN: builder From e1d43475b58e6c7fbea7ba96534e517867299bcc Mon Sep 17 00:00:00 2001 From: Eduardo Cavazos Date: Sat, 16 Feb 2008 17:35:06 -0600 Subject: [PATCH 2/3] builder: trim down USING: --- extra/builder/builder.factor | 2 +- extra/builder/util/util.factor | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/extra/builder/builder.factor b/extra/builder/builder.factor index 4e9e32421d..7c1509439f 100644 --- a/extra/builder/builder.factor +++ b/extra/builder/builder.factor @@ -1,7 +1,7 @@ USING: kernel namespaces sequences splitting system combinators continuations parser io io.files io.launcher io.sockets prettyprint threads - bootstrap.image benchmark accessors vars bake smtp builder.util ; + bootstrap.image benchmark vars bake smtp builder.util accessors ; IN: builder diff --git a/extra/builder/util/util.factor b/extra/builder/util/util.factor index f9f432a8f6..c25d862efb 100644 --- a/extra/builder/util/util.factor +++ b/extra/builder/util/util.factor @@ -3,8 +3,8 @@ USING: kernel words namespaces classes parser continuations io io.files io.launcher io.sockets math math.parser combinators sequences splitting quotations arrays strings tools.time - parser-combinators accessors assocs.lib - combinators.cleave bake calendar new-slots ; + parser-combinators new-slots accessors assocs.lib + combinators.cleave bake calendar ; IN: builder.util From c559ff4c6f4756b65eeaa3f01c103efff41c11ea Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sat, 16 Feb 2008 18:15:18 -0600 Subject: [PATCH 3/3] fix load error --- extra/db/mysql/mysql.factor | 6 ------ 1 file changed, 6 deletions(-) diff --git a/extra/db/mysql/mysql.factor b/extra/db/mysql/mysql.factor index 040b87c977..91562e89ff 100644 --- a/extra/db/mysql/mysql.factor +++ b/extra/db/mysql/mysql.factor @@ -26,12 +26,6 @@ M: mysql-statement prepare-statement ( statement -- ) M: mysql-statement bind-statement* ( statement -- ) ; -M: mysql-statement rebind-statement ( statement -- ) - ; - -M: mysql-statement execute-statement ( statement -- ) - ; - M: mysql-statement query-results ( query -- result-set ) ;