diff options
author | Andy Wingo <wingo@pobox.com> | 2017-09-07 17:05:32 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2017-09-14 09:25:55 +0200 |
commit | 5c8bb1363032eb5797fbd232dec162350304a768 (patch) | |
tree | 94417eed052b946cf33817b9f50044b7dcec8431 /libguile/goops.c | |
parent | 95f66b197cd756766a404a4f3495627fb6e196e9 (diff) | |
download | guile-5c8bb1363032eb5797fbd232dec162350304a768.tar.gz |
Change name of "static" flag indicating static slot allocation
* libguile/goops.h (SCM_VTABLE_FLAG_GOOPS_STATIC_SLOT_ALLOCATION):
Rename from SCM_VTABLE_FLAG_GOOPS_STATIC.
* libguile/goops.c (scm_init_goops_builtins): Adapt.
* module/oop/goops.scm (class-has-statically-allocated-slots?):
(initialize): Adapt.
Diffstat (limited to 'libguile/goops.c')
-rw-r--r-- | libguile/goops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/goops.c b/libguile/goops.c index 5b24ee6bc..ed9dd1e60 100644 --- a/libguile/goops.c +++ b/libguile/goops.c @@ -1024,8 +1024,8 @@ scm_init_goops_builtins (void *unused) scm_from_int (SCM_VTABLE_FLAG_GOOPS_VALID)); scm_c_define ("vtable-flag-goops-slot", scm_from_int (SCM_VTABLE_FLAG_GOOPS_SLOT)); - scm_c_define ("vtable-flag-goops-static", - scm_from_int (SCM_VTABLE_FLAG_GOOPS_STATIC)); + scm_c_define ("vtable-flag-goops-static-slot-allocation", + scm_from_int (SCM_VTABLE_FLAG_GOOPS_STATIC_SLOT_ALLOCATION)); } void |