]> gitweb.factorcode.org Git - factor.git/commitdiff
io.backend.unix.macosx: Trying to change instances of USE: to require if
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 1 Nov 2014 20:16:13 +0000 (13:16 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Sat, 1 Nov 2014 20:16:13 +0000 (13:16 -0700)
the vocab must be loaded but no symbols are directly depended upon.

basis/io/backend/unix/macosx/macosx.factor

index 376ace3585080422c119199a1a19cd2eb03b47d1..3fc61c6cedf86f25838614e0a8b173be47a1140c 100644 (file)
@@ -2,8 +2,7 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: init io.backend io.backend.unix
 io.backend.unix.multiplexers io.backend.unix.multiplexers.kqueue
-io.backend.unix.multiplexers.run-loop namespaces system ;
-USE: io.files.unix ! need this for deploy
+io.backend.unix.multiplexers.run-loop namespaces system vocabs ;
 IN: io.backend.unix.macosx
 
 SINGLETON: macosx-kqueue
@@ -17,3 +16,5 @@ M: macosx init-io ( -- )
 macosx set-io-backend
 
 [ start-signal-pipe-thread ] "io.backend.unix:signal-pipe-thread" add-startup-hook
+
+"io.files.unix" require ! for M: macosx (file-reader) for deploy and file reloading
\ No newline at end of file