Changeset 5311
- Timestamp:
- Oct 7, 2006, 10:14:41 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-1/l1-streams.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-1/l1-streams.lisp
r5306 r5311 2816 2816 (report-bad-arg x 'stream)) 2817 2817 2818 (defmethod input-stream-p ((s fundamental-input-stream))2818 (defmethod input-stream-p ((s input-stream)) 2819 2819 t) 2820 2820 … … 2822 2822 (report-bad-arg x 'stream)) 2823 2823 2824 (defmethod output-stream-p ((s fundamental-input-stream))2825 (typep s ' fundamental-output-stream))2826 2827 (defmethod output-stream-p ((s fundamental-output-stream))2824 (defmethod output-stream-p ((s input-stream)) 2825 (typep s 'output-stream)) 2826 2827 (defmethod output-stream-p ((s output-stream)) 2828 2828 t) 2829 2829 2830 (defmethod input-stream-p ((s fundamental-output-stream))2831 (typep s ' fundamental-input-stream))2830 (defmethod input-stream-p ((s output-stream)) 2831 (typep s 'input-stream)) 2832 2832 2833 2833 (defclass binary-stream (stream)
Note:
See TracChangeset
for help on using the changeset viewer.
