Changeset 4906


Ignore:
Timestamp:
Jul 24, 2006, 3:51:05 AM (18 years ago)
Author:
Gary Byers
Message:

Add a plist to basic-/basic-file-stream.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/library/lispequ.lisp

    r4898 r4906  
    875875
    876876
    877 
     877 
    878878
    879879
     
    12841284  basic-stream.flags                    ; fixnum; bits.
    12851285  basic-stream.state                    ; typically an ioblock
     1286  basic-stream.info                     ; a plist for less-often-used things.
    12861287)
    12871288
    12881289(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.
    12921294  basic-file-stream.filename
    12931295  basic-file-stream.actual-filename
    12941296  )
    12951297
     1298;;; Bits in basic-stream.flags
     1299(defenum (:prefix "BASIC-STREAM-FLAG.")
     1300  open-input
     1301  open-output
     1302  open-binary
     1303  file-stream)
    12961304 
    1297  
    12981305
    12991306
Note: See TracChangeset for help on using the changeset viewer.