Changeset 4906
- Timestamp:
- Jul 24, 2006, 3:51:05 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/library/lispequ.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/library/lispequ.lisp
r4898 r4906 875 875 876 876 877 877 878 878 879 879 … … 1284 1284 basic-stream.flags ; fixnum; bits. 1285 1285 basic-stream.state ; typically an ioblock 1286 basic-stream.info ; a plist for less-often-used things. 1286 1287 ) 1287 1288 1288 1289 (def-accessors (basic-file-stream) %svref 1289 basic-file-stream.class ; a class object 1290 basic-file-stream.flags ; fixnum; bits. 1291 basic-file-stream.state ; typically an ioblock 1290 basic-file-stream.class ; a class object 1291 basic-file-stream.flags ; fixnum; bits. 1292 basic-file-stream.state ; typically an ioblock 1293 basic-file-stream.info ; a plist for less-often-used things. 1292 1294 basic-file-stream.filename 1293 1295 basic-file-stream.actual-filename 1294 1296 ) 1295 1297 1298 ;;; Bits in basic-stream.flags 1299 (defenum (:prefix "BASIC-STREAM-FLAG.") 1300 open-input 1301 open-output 1302 open-binary 1303 file-stream) 1296 1304 1297 1298 1305 1299 1306
Note:
See TracChangeset
for help on using the changeset viewer.
