environment: Fix using lists..

db4
Doug Coleman 2012-08-25 18:51:58 -07:00
parent b7d16801ff
commit 3143222223
2 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,7 @@
! Copyright (C) 2008 Doug Coleman. ! Copyright (C) 2008 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: assocs help.markup help.syntax io.streams.string sequences strings ; USING: assocs environment.unix help.markup help.syntax
io.streams.string libc sequences strings ;
IN: environment IN: environment
HELP: (os-envs) HELP: (os-envs)

View File

@ -1,7 +1,8 @@
! Copyright (C) 2008 Doug Coleman. ! Copyright (C) 2008 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: assocs combinators init kernel sequences splitting USING: assocs combinators environment.unix help.markup
system vocabs vocabs.loader ; help.syntax init io.streams.string kernel libc sequences
splitting strings system vocabs vocabs.loader ;
IN: environment IN: environment
HOOK: os-env os ( key -- value ) HOOK: os-env os ( key -- value )