Changeset 4908
- Timestamp:
- Jul 24, 2006, 3:55:40 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/lib/streams.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/lib/streams.lisp
r2453 r4908 48 48 (setq input-stream (designated-input-stream input-stream)) 49 49 (check-eof 50 (stream-read-char input-stream) 50 (if (typep input-stream 'basic-stream) 51 (let* ((ioblock (basic-stream.state input-stream))) 52 (if ioblock 53 (funcall (ioblock-read-char-function ioblock) ioblock) 54 (error "~s is closed" input-stream))) 55 (stream-read-char input-stream)) 51 56 input-stream 52 57 eof-error-p
Note:
See TracChangeset
for help on using the changeset viewer.
