summaryrefslogtreecommitdiff
path: root/libguile/goops.h
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2011-11-18 12:23:52 +0100
committerAndy Wingo <wingo@pobox.com>2011-11-24 11:47:36 +0100
commit2575157e54e9fa0ee3e4a3bed1bdc124c0332c8c (patch)
tree8137bd805bd6cd6eb18317197f0bca7e2cf5f029 /libguile/goops.h
parent0818837f65fbf141caa84e5d46f93e6e56c1a370 (diff)
downloadguile-2575157e54e9fa0ee3e4a3bed1bdc124c0332c8c.tar.gz
remove unused <class> slot: keyword-access
* libguile/goops.h (SCM_CLASS_CLASS_LAYOUT, scm_si_keyword_access): * libguile/goops.c (build_class_class_slots): Remove unused keyword-access slot from classes.
Diffstat (limited to 'libguile/goops.h')
-rw-r--r--libguile/goops.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/libguile/goops.h b/libguile/goops.h
index fcb89685a..ba51e58b0 100644
--- a/libguile/goops.h
+++ b/libguile/goops.h
@@ -79,7 +79,6 @@
"pw" /* default-slot-definition-class */ \
"pw" /* slots */ \
"pw" /* getters-n-setters */ \
- "pw" /* keyword access */ \
"pw" /* nfields */
#define scm_si_redefined (scm_vtable_offset_user + 0)
@@ -101,9 +100,8 @@
#define scm_si_slots (scm_vtable_offset_user + 15) /* ((name . options) ...) */
#define scm_si_name_access (scm_vtable_offset_user + 16)
#define scm_si_getters_n_setters scm_si_name_access
-#define scm_si_keyword_access (scm_vtable_offset_user + 17)
-#define scm_si_nfields (scm_vtable_offset_user + 18) /* an integer */
-#define SCM_N_CLASS_SLOTS (scm_vtable_offset_user + 19)
+#define scm_si_nfields (scm_vtable_offset_user + 17) /* an integer */
+#define SCM_N_CLASS_SLOTS (scm_vtable_offset_user + 18)
typedef struct scm_t_method {
SCM generic_function;