Changeset 5940


Ignore:
Timestamp:
Feb 19, 2007, 1:09:23 AM (18 years ago)
Author:
Gary Byers
Message:

FUNCALLABLE-STANDARD-OBJECT is a FUNCALLABLE-STANDARD-CLASS.

File:
1 edited

Legend:

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

    r5779 r5940  
    15351535
    15361536
    1537 (defglobal *funcallable-standard-object-class*
    1538   (make-standard-class 'funcallable-standard-object
    1539                        *standard-object-class* *function-class*))
     1537
    15401538
    15411539(defglobal *funcallable-standard-class-class*
    15421540  (make-standard-class 'funcallable-standard-class *std-class-class*))
     1541
     1542(defglobal *funcallable-standard-object-class*
     1543  (make-class 'funcallable-standard-object
     1544              (%class.own-wrapper *funcallable-standard-class-class*)
     1545              (list *standard-object-class* *function-class*)))
    15431546
    15441547(defglobal *generic-function-class*
Note: See TracChangeset for help on using the changeset viewer.