[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 26/87: Remove scm_at_assert_bound_ref
From: |
Andy Wingo |
Subject: |
[Guile-commits] 26/87: Remove scm_at_assert_bound_ref |
Date: |
Thu, 22 Jan 2015 17:29:49 +0000 |
wingo pushed a commit to branch wip-goops-refactor
in repository guile.
commit fc29bdb8f51276acfc3bc014808ff465e783da65
Author: Andy Wingo <address@hidden>
Date: Tue Jan 6 14:51:44 2015 -0500
Remove scm_at_assert_bound_ref
* libguile/goops.c (scm_at_assert_bound_ref): Remove unused, unexported
function.
---
libguile/goops.c | 14 --------------
1 files changed, 0 insertions(+), 14 deletions(-)
diff --git a/libguile/goops.c b/libguile/goops.c
index 5e3ea48..a696e1a 100644
--- a/libguile/goops.c
+++ b/libguile/goops.c
@@ -176,7 +176,6 @@ SCM scm_i_smob_class[SCM_I_MAX_SMOB_TYPE_COUNT];
static SCM scm_make_unbound (void);
static SCM scm_unbound_p (SCM obj);
static SCM scm_assert_bound (SCM value, SCM obj);
-static SCM scm_at_assert_bound_ref (SCM obj, SCM index);
static SCM scm_sys_bless_applicable_struct_vtables_x (SCM applicable,
SCM setter);
static SCM scm_sys_bless_pure_generic_vtable_x (SCM vtable);
@@ -730,19 +729,6 @@ SCM_DEFINE (scm_assert_bound, "assert-bound", 2, 0, 0,
}
#undef FUNC_NAME
-SCM_DEFINE (scm_at_assert_bound_ref, "@assert-bound-ref", 2, 0, 0,
- (SCM obj, SCM index),
- "Like @code{assert-bound}, but use @var{index} for accessing\n"
- "the value from @var{obj}.")
-#define FUNC_NAME s_scm_at_assert_bound_ref
-{
- SCM value = SCM_SLOT (obj, scm_to_int (index));
- if (SCM_GOOPS_UNBOUNDP (value))
- return scm_call_1 (SCM_VARIABLE_REF (var_slot_unbound), obj);
- return value;
-}
-#undef FUNC_NAME
-
/** Utilities **/
- [Guile-commits] 06/87: compute-cpl implementation only in Scheme, (continued)
- [Guile-commits] 06/87: compute-cpl implementation only in Scheme, Andy Wingo, 2015/01/22
- [Guile-commits] 13/87: `class' is a hygienic macro, Andy Wingo, 2015/01/22
- [Guile-commits] 14/87: define-generic, define-extended-generic are hygienic syntax, Andy Wingo, 2015/01/22
- [Guile-commits] 15/87: Remove unused *goops-module* definition., Andy Wingo, 2015/01/22
- [Guile-commits] 17/87: Remove unused scm_t_method and SCM_METHOD, Andy Wingo, 2015/01/22
- [Guile-commits] 20/87: Remove useless scm_s_slot_set_x export, Andy Wingo, 2015/01/22
- [Guile-commits] 18/87: Deprecate scm_no_applicable_method C export, Andy Wingo, 2015/01/22
- [Guile-commits] 21/87: Remove unused `default-slot-definition-class' <class> slot, Andy Wingo, 2015/01/22
- [Guile-commits] 22/87: Remove unused CPP defines naming <method> slots, Andy Wingo, 2015/01/22
- [Guile-commits] 19/87: Remove unreachable code in scm_setter, Andy Wingo, 2015/01/22
- [Guile-commits] 26/87: Remove scm_at_assert_bound_ref,
Andy Wingo <=
- [Guile-commits] 25/87: Remove hashset slots from GOOPS classes, Andy Wingo, 2015/01/22
- [Guile-commits] 29/87: More unused code removal in GOOPS, Andy Wingo, 2015/01/22
- [Guile-commits] 23/87: Generics with setters have <applicable-struct-with-setter> layout, Andy Wingo, 2015/01/22
- [Guile-commits] 30/87: Remove unused union scm_t_debug_info, Andy Wingo, 2015/01/22
- [Guile-commits] 27/87: Remove scm_assert_bound, Andy Wingo, 2015/01/22
- [Guile-commits] 32/87: Remove GOOPS random state, Andy Wingo, 2015/01/22
- [Guile-commits] 28/87: Remove private var_no_applicable_method capture, Andy Wingo, 2015/01/22
- [Guile-commits] 31/87: More goops.c cleanups, and fix a security issue, Andy Wingo, 2015/01/22
- [Guile-commits] 34/87: Statically compute offsets for slots of <class> in Scheme, Andy Wingo, 2015/01/22
- [Guile-commits] 33/87: Refactor to <class> slot computation, Andy Wingo, 2015/01/22