Changeset 5290
- Timestamp:
- Oct 5, 2006, 3:59:08 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-1/l1-boot-2.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-1/l1-boot-2.lisp
r5244 r5290 73 73 (defvar *stdout* ()) 74 74 (defvar *stderr* ()) 75 76 77 (defun set-basic-stream-prototype (class) 78 (when (subtypep class 'basic-stream) 79 (setf (%class.prototype class) (or (%class.prototype class) 80 (allocate-basic-stream class))) 81 (dolist (subclass (class-direct-subclasses class)) 82 (set-basic-stream-prototype subclass)))) 83 84 (set-basic-stream-prototype (find-class 'basic-stream)) 85 75 86 76 87 ;;; The hard parts here have to do with setting up *TERMINAL-IO*.
Note:
See TracChangeset
for help on using the changeset viewer.
