Eliminate redundant and incorrect definition of INPUT-PORT/READ-LINE,
authorTaylor R. Campbell <net/mumble/campbell>
Tue, 27 Dec 2005 06:22:06 +0000 (06:22 +0000)
committerTaylor R. Campbell <net/mumble/campbell>
Tue, 27 Dec 2005 06:22:06 +0000 (06:22 +0000)
which the run-time system has provided for some time now.

v7/src/edwin/nntp.scm

index 9fed9b1470a739516bc0e710721704453c7cd5da..54de6fb72fe21064c7aeaafe1c13bb02a2646fba 100644 (file)
@@ -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.
 \f
 ;;;; 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))