Skip to content
This repository has been archived by the owner on Mar 13, 2023. It is now read-only.

Commit

Permalink
Fixed a typo in stream-read-line; the value of the :element-type was not
Browse files Browse the repository at this point in the history
quoted.
  • Loading branch information
Robert Strandh committed Apr 21, 2002
1 parent cd91ff5 commit a98e02f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stream-input.lisp
Expand Up @@ -326,7 +326,7 @@
(defmethod stream-read-line ((stream standard-extended-input-stream))
(with-encapsulating-stream (estream stream)
(let ((result (make-array 1
:element-type character
:element-type 'character
:adjustable t
:fill-pointer 0)))
(loop for char = (stream-read-char estream)
Expand Down

0 comments on commit a98e02f

Please sign in to comment.