From 1d232876783c0ef733cdccf48656b8dd646a1f3d Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Tue, 13 Jan 2009 18:57:09 -0600 Subject: [PATCH] remove "pipe" from word name --- basis/io/files/windows/windows.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/io/files/windows/windows.factor b/basis/io/files/windows/windows.factor index 842f1ec84c..444ba98c7d 100755 --- a/basis/io/files/windows/windows.factor +++ b/basis/io/files/windows/windows.factor @@ -15,7 +15,7 @@ IN: io.files.windows CreateFile-flags f CreateFile opened-file ] with-destructors ; -: open-pipe-r/w ( path -- win32-file ) +: open-r/w ( path -- win32-file ) { GENERIC_READ GENERIC_WRITE } flags OPEN_EXISTING 0 open-file ;