Changeset 302


Ignore:
Timestamp:
Jan 15, 2004, 12:32:41 AM (21 years ago)
Author:
Gary Byers
Message:

MAKE-INSTANCES-OBSOLETE: methods return class.

File:
1 edited

Legend:

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

    r285 r302  
    24352435    (when wrapper
    24362436      (setf (%class.own-wrapper class) nil)
    2437       (make-wrapper-obsolete wrapper))))
     2437      (make-wrapper-obsolete wrapper)))
     2438  class)
    24382439
    24392440(defmethod make-instances-obsolete ((class funcallable-standard-class))
     
    24412442    (when wrapper
    24422443      (setf (%class.own-wrapper class) nil)
    2443       (make-wrapper-obsolete wrapper))))
    2444 
    2445 (defmethod make-instances-obsolete ((class structure-class)))
     2444      (make-wrapper-obsolete wrapper)))
     2445  class)
     2446
     2447(defmethod make-instances-obsolete ((class structure-class))
     2448  ;; could maybe warn that instances are obsolete, but there's not
     2449  ;; much that we can do about that.
     2450  class)
    24462451
    24472452
Note: See TracChangeset for help on using the changeset viewer.