Changeset 326


Ignore:
Timestamp:
Jan 17, 2004, 7:57:15 PM (21 years ago)
Author:
Gary Byers
Message:

PPRINT-DISATCH: symbol is external in CL, so don't use it as a structure
name.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/lib/pprint.lisp

    r272 r326  
    335335;                       ---- DISPATCHING ----
    336336
    337 (cl:defstruct (pprint-dispatch (:conc-name nil) (:copier nil))
     337(cl:defstruct (pprint-dispatch-table (:conc-name nil) (:copier nil))
    338338  (conses-with-cars (make-hash-table :test #'eq) :type hash-table)
    339339  (structures (make-hash-table :test #'eq) :type hash-table)
     
    382382                 (setf (gethash key new-structures) (#+ccl-2 copy-uvector #-ccl-2 copy-entry value)))
    383383             (structures table))
    384     (make-pprint-dispatch
     384    (make-pprint-dispatch-table
    385385      :conses-with-cars new-conses-with-cars
    386386      :structures new-structures
     
    34583458
    34593459
    3460 (setq *IPD* (make-pprint-dispatch))
     3460(setq *IPD* (make-pprint-dispatch-table))
    34613461
    34623462(set-pprint-dispatch+ '(satisfies function-call-p) #'alternative-fn-call '(-5) *IPD*)
Note: See TracChangeset for help on using the changeset viewer.