From a45fcf94a3b55fb2453bd90a8b90c09cebd81703 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Mon, 24 Sep 1990 17:22:32 +0000 Subject: [PATCH] Fixed the clear-input method. --- code/fd-stream.lisp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/fd-stream.lisp b/code/fd-stream.lisp index 964b76171..e450c5baa 100644 --- a/code/fd-stream.lisp +++ b/code/fd-stream.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.6 1990/09/06 19:40:38 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.7 1990/09/24 17:22:32 wlott Exp $ ;;; ;;; Streams for UNIX file descriptors. ;;; @@ -852,7 +852,9 @@ (loop (multiple-value-bind (count errno) - (mach:unix-select (1+ fd) (ash 1 fd) 0 0 0) + (mach:unix-select (1+ (fd-stream-fd stream)) + (ash 1 (fd-stream-fd stream)) + 0 0 0) (cond ((eql count 1) (do-input stream) (setf (fd-stream-ibuf-head stream) 0) -- GitLab