Changeset 358
- Timestamp:
- Jan 21, 2004, 12:32:56 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-1/l1-streams.lisp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-1/l1-streams.lisp
r357 r358 252 252 t)) 253 253 254 (defmethod open-stream-p ((x t)) 255 (report-bad-arg x 'stream)) 256 254 257 (defmethod open-stream-p ((stream stream)) 255 258 (not (slot-value stream 'closed))) … … 263 266 esp those associated with windows." 264 267 80) 268 269 (defmethod interactive-stream-p ((x t)) 270 (report-bad-arg x 'stream)) 265 271 266 272 (defmethod interactive-stream-p ((stream stream)) nil) … … 949 955 ()) 950 956 957 (defmethod input-stream-p ((x t)) 958 (report-bad-arg x 'stream)) 959 951 960 (defmethod input-stream-p ((s fundamental-input-stream)) 952 961 t) 962 963 (defmethod output-stream-p ((x t)) 964 (report-bad-arg x 'stream)) 953 965 954 966 (defmethod output-stream-p ((s fundamental-input-stream))
Note:
See TracChangeset
for help on using the changeset viewer.
