Changeset 732


Ignore:
Timestamp:
Mar 27, 2004, 2:48:48 AM (21 years ago)
Author:
Gary Byers
Message:

Fix error message typo when allocating GFs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/level-1/l1-clos.lisp

    r644 r732  
    12801280          (unless (or (eq gf-class *standard-generic-function-class*)
    12811281                      (subtypep gf-class *generic-function-class*))
    1282             (error "Class ~S is not a subclass of ~S")
    1283             gf-class *generic-function-class*)))
     1282            (error "Class ~S is not a subclass of ~S"
     1283                   gf-class *generic-function-class*))))
    12841284      (unless (eq mcomb missing)
    12851285        (unless (typep mcomb 'method-combination)
     
    14671467                      #'%%0-arg-dcode
    14681468                      0
    1469                       ;; Set the AOK (&allow-other-keys) bit without
    1470                       ;; setting the KEYS bit, to indicate that we
    1471                       ;; don't know anything about this gf's
    1472                       ;; lambda-list.
    14731469                      (logior (ash 1 $lfbits-gfn-bit)
    1474                               (ash 1 $lfbits-aok-bit)))))
    1475     (setf (gf.hash fn) (strip-tag-to-fixnum fn)
     1470                              (ash 1 $lfbits-aok-bit)))))
     1471         (setf (gf.hash fn) (strip-tag-to-fixnum fn)
    14761472          (slot-vector.instance slots) fn
    14771473          (%gf-dispatch-table-gf dt) fn)
Note: See TracChangeset for help on using the changeset viewer.