[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 41/88: Goops slot-unbound / slot-missing cleanups
From: |
Andy Wingo |
Subject: |
[Guile-commits] 41/88: Goops slot-unbound / slot-missing cleanups |
Date: |
Fri, 23 Jan 2015 15:25:39 +0000 |
wingo pushed a commit to branch master
in repository guile.
commit 0cd9a69413d157ee5e1494132a0af80a0e4bbad8
Author: Andy Wingo <address@hidden>
Date: Sat Jan 10 00:51:26 2015 +0100
Goops slot-unbound / slot-missing cleanups
* libguile/goops.c: Remove useless slot-unbound / slot-missing
captures.
---
libguile/goops.c | 6 ------
1 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/libguile/goops.c b/libguile/goops.c
index cf08f9c..53b69a9 100644
--- a/libguile/goops.c
+++ b/libguile/goops.c
@@ -65,8 +65,6 @@
though, as in the rest of Guile. */
static SCM var_make_standard_class = SCM_BOOL_F;
-static SCM var_slot_unbound = SCM_BOOL_F;
-static SCM var_slot_missing = SCM_BOOL_F;
static SCM var_change_class = SCM_BOOL_F;
static SCM var_make = SCM_BOOL_F;
static SCM var_class_name = SCM_BOOL_F;
@@ -1475,10 +1473,6 @@ SCM_DEFINE (scm_sys_goops_loaded, "%goops-loaded", 0, 0,
0,
var_method_specializers = scm_c_lookup ("method-specializers");
var_method_procedure = scm_c_lookup ("method-procedure");
- var_slot_unbound =
- scm_module_variable (scm_module_goops, sym_slot_unbound);
- var_slot_missing =
- scm_module_variable (scm_module_goops, sym_slot_missing);
var_change_class =
scm_module_variable (scm_module_goops, sym_change_class);
setup_extended_primitive_generics ();
- [Guile-commits] 33/88: More goops.c cleanups, and fix a security issue, (continued)
- [Guile-commits] 33/88: More goops.c cleanups, and fix a security issue, Andy Wingo, 2015/01/23
- [Guile-commits] 34/88: Remove GOOPS random state, Andy Wingo, 2015/01/23
- [Guile-commits] 36/88: Statically compute offsets for slots of <class> in Scheme, Andy Wingo, 2015/01/23
- [Guile-commits] 21/88: Remove unreachable code in scm_setter, Andy Wingo, 2015/01/23
- [Guile-commits] 18/88: Fold GOOPS compile and dispatch modules into main GOOPS module, Andy Wingo, 2015/01/23
- [Guile-commits] 39/88: Port method and generic accessors to Scheme, Andy Wingo, 2015/01/23
- [Guile-commits] 35/88: Refactor to <class> slot computation, Andy Wingo, 2015/01/23
- [Guile-commits] 38/88: <class> accessors implemented in Scheme, Andy Wingo, 2015/01/23
- [Guile-commits] 30/88: Remove private var_no_applicable_method capture, Andy Wingo, 2015/01/23
- [Guile-commits] 26/88: Deprecate C exports of GOOPS classes., Andy Wingo, 2015/01/23
- [Guile-commits] 41/88: Goops slot-unbound / slot-missing cleanups,
Andy Wingo <=
- [Guile-commits] 40/88: Move slot-ref et al to Scheme, Andy Wingo, 2015/01/23
- [Guile-commits] 44/88: No more concept of "pure generics", Andy Wingo, 2015/01/23
- [Guile-commits] 45/88: Remove scm_c_extend_primitive_generic, Andy Wingo, 2015/01/23
- [Guile-commits] 47/88: Rewrite %initialize-object in Scheme, Andy Wingo, 2015/01/23
- [Guile-commits] 48/88: Deprecate scm_get_keyword, Andy Wingo, 2015/01/23
- [Guile-commits] 43/88: Remove TEST_CHANGE_CLASS, Andy Wingo, 2015/01/23
- [Guile-commits] 42/88: Remove pure-generic?, Andy Wingo, 2015/01/23
- [Guile-commits] 46/88: Minor goops.c tidying, Andy Wingo, 2015/01/23
- [Guile-commits] 37/88: goops: use computed class slot offsets; untabify and fix whitepace, Andy Wingo, 2015/01/23
- [Guile-commits] 50/88: Re-use the vtable "size" field for GOOPS nfields, Andy Wingo, 2015/01/23