diff --git a/libguile/goops.c b/libguile/goops.c index 5825c3732..80e0b3040 100644 --- a/libguile/goops.c +++ b/libguile/goops.c @@ -144,6 +144,7 @@ static SCM class_continuation; static SCM class_directory; static SCM class_macro; static SCM class_random_state; +static SCM class_regexp; static struct scm_ephemeron_table *vtable_class_map; static SCM pre_goops_vtables = SCM_EOL; @@ -357,6 +358,8 @@ SCM_DEFINE (scm_class_of, "class-of", 1, 0, 0, return class_macro; case scm_tc16_random_state: return class_random_state; + case scm_tc16_regexp: + return class_regexp; default: abort (); } @@ -998,6 +1001,7 @@ SCM_DEFINE (scm_sys_goops_early_init, "%goops-early-init", 0, 0, 0, class_directory = scm_variable_ref (scm_c_lookup ("")); class_macro = scm_variable_ref (scm_c_lookup ("")); class_random_state = scm_variable_ref (scm_c_lookup ("")); + class_regexp = scm_variable_ref (scm_c_lookup ("")); create_smob_classes (); create_struct_classes (); diff --git a/module/oop/goops.scm b/module/oop/goops.scm index 89cc69da1..6a18b9691 100644 --- a/module/oop/goops.scm +++ b/module/oop/goops.scm @@ -72,7 +72,7 @@ - + ;; Numbers. @@ -84,7 +84,6 @@ ;; have corresponding classes, which may be obtained via ;; class-of, once you have an instance. Perhaps FIXME to ;; provide a smob-type-name->class procedure. - ;; Modules. @@ -1089,6 +1088,7 @@ slots as we go." (define-standard-class ()) (define-standard-class ()) (define-standard-class ()) +(define-standard-class ()) (define-standard-class ()) (define-standard-class ()) (define-standard-class ()) @@ -3532,12 +3532,6 @@ var{initargs}." -;;; -;;; {SMOB and port classes} -;;; - -(define (find-subclass ')) - ;; used to be a SMOB type, albeit not exported even to ;; C. However now it's a record type, though still private. Cross our ;; fingers that nobody is using it in anger!