From 645c9ac1296eb32ae413bef87e760f062c033170 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Tue, 9 Dec 2008 02:21:03 -0600 Subject: [PATCH] Fix load errors related to utf16n being moved to io.encodings.utf16n --- basis/tools/deploy/unix/unix.factor | 4 ++-- basis/tools/deploy/windows/windows.factor | 5 +++-- basis/windows/shell32/shell32.factor | 2 +- basis/windows/windows.factor | 3 ++- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/basis/tools/deploy/unix/unix.factor b/basis/tools/deploy/unix/unix.factor index 5e1d0be7fb..bd49155e84 100644 --- a/basis/tools/deploy/unix/unix.factor +++ b/basis/tools/deploy/unix/unix.factor @@ -1,8 +1,8 @@ ! Copyright (C) 2008 James Cash ! See http://factorcode.org/license.txt for BSD license. USING: io io.files io.backend kernel namespaces make sequences -system tools.deploy.backend tools.deploy.config assocs -hashtables prettyprint ; +system tools.deploy.backend tools.deploy.config +tools.deploy.config.editor assocs hashtables prettyprint ; IN: tools.deploy.unix : create-app-dir ( vocab bundle-name -- vm ) diff --git a/basis/tools/deploy/windows/windows.factor b/basis/tools/deploy/windows/windows.factor index ec1259c777..6188e78b0e 100755 --- a/basis/tools/deploy/windows/windows.factor +++ b/basis/tools/deploy/windows/windows.factor @@ -1,8 +1,9 @@ ! Copyright (C) 2007, 2008 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license. USING: io io.files kernel namespaces sequences system -tools.deploy.backend tools.deploy.config assocs hashtables -prettyprint combinators windows.shell32 windows.user32 ; +tools.deploy.backend tools.deploy.config +tools.deploy.config.editor assocs hashtables prettyprint +combinators windows.shell32 windows.user32 ; IN: tools.deploy.windows : copy-dll ( bundle-name -- ) diff --git a/basis/windows/shell32/shell32.factor b/basis/windows/shell32/shell32.factor index b071bee72a..eae796ac08 100644 --- a/basis/windows/shell32/shell32.factor +++ b/basis/windows/shell32/shell32.factor @@ -1,6 +1,6 @@ USING: alien alien.c-types alien.strings alien.syntax combinators kernel windows windows.user32 windows.ole32 -windows.com windows.com.syntax io.files ; +windows.com windows.com.syntax io.files io.encodings.utf16n ; IN: windows.shell32 : CSIDL_DESKTOP HEX: 00 ; inline diff --git a/basis/windows/windows.factor b/basis/windows/windows.factor index 2fc1dbf122..d2250d6f7e 100644 --- a/basis/windows/windows.factor +++ b/basis/windows/windows.factor @@ -2,7 +2,8 @@ ! See http://factorcode.org/license.txt for BSD license. USING: alien alien.syntax alien.c-types alien.strings arrays combinators kernel math namespaces parser prettyprint sequences -windows.errors windows.types windows.kernel32 words ; +windows.errors windows.types windows.kernel32 words +io.encodings.utf16n ; IN: windows : lo-word ( wparam -- lo ) *short ; inline -- 2.34.1