From: Taylor R. Campbell Date: Tue, 27 Dec 2005 06:22:06 +0000 (+0000) Subject: Eliminate redundant and incorrect definition of INPUT-PORT/READ-LINE, X-Git-Tag: 20090517-FFI~1142 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=0b574d5fcecad31aef177041cc0346086f93abd4;p=mit-scheme.git Eliminate redundant and incorrect definition of INPUT-PORT/READ-LINE, which the run-time system has provided for some time now. --- diff --git a/v7/src/edwin/nntp.scm b/v7/src/edwin/nntp.scm index 9fed9b147..54de6fb72 100644 --- a/v7/src/edwin/nntp.scm +++ b/v7/src/edwin/nntp.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: nntp.scm,v 1.31 2005/12/25 17:43:52 riastradh Exp $ +$Id: nntp.scm,v 1.32 2005/12/27 06:22:06 riastradh Exp $ Copyright 1995,1996,1997,1998,1999,2003 Massachusetts Institute of Technology Copyright 2004,2005 Massachusetts Institute of Technology @@ -1780,12 +1780,6 @@ USA. ;;;; Miscellaneous -(define (input-port/read-line port) - (let ((line (input-port/read-string port char-set:newline))) - ;; Discard delimiter, if any -- this is a no-op at EOF. - (input-port/discard-char port) - line)) - (define (input-port/discard-line port) (input-port/discard-chars port char-set:newline) (input-port/discard-char port))