summaryrefslogtreecommitdiff
path: root/libguile/objects.c
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>1998-11-21 17:01:33 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>1998-11-21 17:01:33 +0000
commitaf3645c52b43cdea454cac4e299cff469b79890a (patch)
tree866f0192290cbd6b7288d720328360c0fe83dff7 /libguile/objects.c
parent9b07e212d55df62a37b47ec781f9a16ebe05f74a (diff)
downloadguile-af3645c52b43cdea454cac4e299cff469b79890a.tar.gz
* objects.c (scm_init_objects): Renamed <standard-metaclass>,
<operator-metaclass> and <entity-class> to <standard-class>, <operator-class> and <entity> in order to conform with STKlos naming conventions.
Diffstat (limited to 'libguile/objects.c')
-rw-r--r--libguile/objects.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/objects.c b/libguile/objects.c
index fd566a1a4..3ce31179a 100644
--- a/libguile/objects.c
+++ b/libguile/objects.c
@@ -219,12 +219,12 @@ scm_init_objects ()
SCM et = scm_make_struct (mt, SCM_INUM0,
SCM_LIST4 (el, SCM_BOOL_F, SCM_EOL, SCM_EOL));
- scm_sysintern ("<standard-metaclass>", mt);
+ scm_sysintern ("<standard-class>", mt);
scm_metaclass_standard = mt;
- scm_sysintern ("<operator-metaclass>", ot);
+ scm_sysintern ("<operator-class>", ot);
scm_metaclass_operator = ot;
SCM_SET_CLASS_FLAGS (et, SCM_CLASSF_OPERATOR | SCM_CLASSF_ENTITY);
- scm_sysintern ("<entity-class>", et);
+ scm_sysintern ("<entity>", et);
#include "objects.x"
}