]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/io/directories/directories-docs.factor
Remove Windows CE from core/ basis/ and build-support/
[factor.git] / basis / io / directories / directories-docs.factor
index 6370fdb90d04255def2f25d79270c56c507183e0..056b1c8396c7f24f51523f4f8af60edebcdc1a7e 100644 (file)
@@ -5,13 +5,11 @@ IN: io.directories
 HELP: cwd
 { $values { "path" "a pathname string" } }
 { $description "Outputs the current working directory of the Factor process." }
-{ $errors "Windows CE has no concept of “current directory”, so this word throws an error there." }
 { $notes "User code should use the value of the " { $link current-directory } " variable instead." } ;
 
 HELP: cd
 { $values { "path" "a pathname string" } }
 { $description "Changes the current working directory of the Factor process." }
-{ $errors "Windows CE has no concept of “current directory”, so this word throws an error there." }
 { $notes "User code should use " { $link with-directory } " or " { $link set-current-directory } " instead." } ;
 
 { cd cwd current-directory set-current-directory with-directory } related-words