Jon Boone pushed to branch issue-143-ansi-compliance-failure-listen-extra-argument at cmucl / cmucl
Commits: 4ad74293 by Jon Boone at 2023-05-04T12:10:06-04:00 Fix #143 - correcting docstring to conform with CMUCL style
- - - - -
1 changed file:
- src/code/stream.lisp
Changes:
===================================== src/code/stream.lisp ===================================== @@ -606,9 +606,9 @@
(defun listen (&optional (stream *standard-input*) (width 1 width-p)) _N"Returns T if a character is available on the given Stream. - Argument width is only used by streams of type simple-stream. - If stream is of type lisp-stream or fundamental-stream, - passing more than one argument is invalid. " + Argument Width is only used by instances of SIMPLE-STREAM. If + Stream is a LISP-STREAM or FUNDAMENTAL-STREAM, passing more + than one argument is invalid." (declare (type streamlike stream)) (let ((stream (in-synonym-of stream))) (stream-dispatch stream
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/4ad742939d3f88369c719cf3...