diff --git a/scsh/rdelim.scm b/scsh/rdelim.scm index 01a72c2..3fddd6d 100644 --- a/scsh/rdelim.scm +++ b/scsh/rdelim.scm @@ -222,7 +222,6 @@ ;; This is the code for other kinds of ports. ;; Mighty slow -- we read each char twice (peek first, then read). (let lp ((i start)) - (warn "use of read-delim lp") (let ((c (peek-char port))) (cond ((or (eof-object? c) ; Found terminating char or eof (char-set-contains? delims c)) @@ -230,7 +229,6 @@ (values c (- i start))) ((>= i end) ; Filled the buffer. - (if gobble? (read-char port)) (values #f (- i start))) (else (string-set! buf i (read-char port))