From f4834ce51c4488f69b7dbb1dbe3bb6791f6b72fa Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 28 Jan 2013 16:34:36 -0800 Subject: [PATCH] io.backend.unix: Nobody uses (refill), remove it. --- basis/io/backend/unix/unix.factor | 6 ------ 1 file changed, 6 deletions(-) diff --git a/basis/io/backend/unix/unix.factor b/basis/io/backend/unix/unix.factor index ad2e6e1ff2..45f08a1247 100755 --- a/basis/io/backend/unix/unix.factor +++ b/basis/io/backend/unix/unix.factor @@ -88,12 +88,6 @@ M: io-timeout summary drop "I/O operation timed out" ; ! Some general stuff CONSTANT: file-mode 0o0666 -! Readers -: (refill) ( port -- n ) - [ handle>> ] - [ buffer>> buffer-end ] - [ buffer>> buffer-capacity ] tri read ; - ! Returns an event to wait for which will ensure completion of ! this request GENERIC: refill ( port handle -- event/f )