Changeset 326
- Timestamp:
- Jan 17, 2004, 7:57:15 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/ccl/lib/pprint.lisp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/lib/pprint.lisp
r272 r326 335 335 ; ---- DISPATCHING ---- 336 336 337 (cl:defstruct (pprint-dispatch (:conc-name nil) (:copier nil))337 (cl:defstruct (pprint-dispatch-table (:conc-name nil) (:copier nil)) 338 338 (conses-with-cars (make-hash-table :test #'eq) :type hash-table) 339 339 (structures (make-hash-table :test #'eq) :type hash-table) … … 382 382 (setf (gethash key new-structures) (#+ccl-2 copy-uvector #-ccl-2 copy-entry value))) 383 383 (structures table)) 384 (make-pprint-dispatch 384 (make-pprint-dispatch-table 385 385 :conses-with-cars new-conses-with-cars 386 386 :structures new-structures … … 3458 3458 3459 3459 3460 (setq *IPD* (make-pprint-dispatch ))3460 (setq *IPD* (make-pprint-dispatch-table)) 3461 3461 3462 3462 (set-pprint-dispatch+ '(satisfies function-call-p) #'alternative-fn-call '(-5) *IPD*)
Note:
See TracChangeset
for help on using the changeset viewer.
