wingo pushed a commit to branch wip-goops-refactor
in repository guile.
commit f4464fef577fa9277b9c5ad1ed5f0e8de5321b82
Author: Andy Wingo <[email protected]>
Date: Wed Jan 7 16:31:56 2015 -0500
Remove GOOPS random state
* libguile/goops.c: Remove GOOPS random state, now that there are no
more hashsets.
---
libguile/goops.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/libguile/goops.c b/libguile/goops.c
index 278d30f..9d5cf7a 100644
--- a/libguile/goops.c
+++ b/libguile/goops.c
@@ -109,7 +109,6 @@ SCM_VARIABLE (scm_var_make_extended_generic,
"make-extended-generic");
#define SCM_GOOPS_UNBOUNDP(x) (scm_is_eq (x, SCM_GOOPS_UNBOUND))
static int goops_loaded_p = 0;
-static scm_t_rstate *goops_rstate;
/* These variables are filled in by the object system when loaded. */
static SCM class_boolean, class_char, class_pair;
@@ -1707,8 +1706,6 @@ scm_init_goops_builtins (void *unused)
{
scm_module_goops = scm_current_module ();
- goops_rstate = scm_c_make_rstate ("GOOPS", 5);
-
hell = scm_calloc (hell_size * sizeof (*hell));
hell_mutex = scm_make_mutex ();