Minor goops.c tidying
authorAndy Wingo <wingo@pobox.com>
Sat, 10 Jan 2015 22:26:41 +0000 (23:26 +0100)
committerAndy Wingo <wingo@pobox.com>
Fri, 23 Jan 2015 15:16:01 +0000 (16:16 +0100)
* libguile/goops.c: Reorder static variables.  Remove unused
  sym_procedure.

libguile/goops.c

index 5f9fcac..d722e0d 100644 (file)
@@ -55,6 +55,9 @@
 #define SCM_OUT_PCLASS_INDEX      SCM_I_MAX_PORT_TYPE_COUNT
 #define SCM_INOUT_PCLASS_INDEX    (2 * SCM_I_MAX_PORT_TYPE_COUNT)
 
+#define SCM_GOOPS_UNBOUND SCM_UNBOUND
+#define SCM_GOOPS_UNBOUNDP(x) (scm_is_eq (x, SCM_GOOPS_UNBOUND))
+
 /* Objects have identity, so references to classes and instances are by
    value, not by reference.  Redefinition of a class or modification of
    an instance causes in-place update; you can think of GOOPS as
@@ -64,6 +67,8 @@
    References to ordinary procedures is by reference (by variable),
    though, as in the rest of Guile.  */
 
+static int goops_loaded_p = 0;
+
 static SCM var_make_standard_class = SCM_BOOL_F;
 static SCM var_change_class = SCM_BOOL_F;
 static SCM var_make = SCM_BOOL_F;
@@ -90,11 +95,6 @@ static SCM var_slot_set_x = SCM_BOOL_F;
 static SCM var_slot_bound_p = SCM_BOOL_F;
 static SCM var_slot_exists_p = SCM_BOOL_F;
 
-#define SCM_GOOPS_UNBOUND SCM_UNBOUND
-#define SCM_GOOPS_UNBOUNDP(x) (scm_is_eq (x, SCM_GOOPS_UNBOUND))
-
-static int goops_loaded_p = 0;
-
 /* These variables are filled in by the object system when loaded. */
 static SCM class_boolean, class_char, class_pair;
 static SCM class_procedure, class_string, class_symbol;
@@ -503,8 +503,6 @@ scm_is_method (SCM x)
  *
  ******************************************************************************/
 
-SCM_SYMBOL (sym_procedure, "procedure");
-
 SCM
 scm_class_name (SCM obj)
 {