guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 29/42: Remove private var_no_applicable_method capture


From: Andy Wingo
Subject: [Guile-commits] 29/42: Remove private var_no_applicable_method capture
Date: Sat, 10 Jan 2015 00:03:14 +0000

wingo pushed a commit to branch wip-goops-refactor
in repository guile.

commit 224525feaf29e99f8875844ea480e150e8113298
Author: Andy Wingo <address@hidden>
Date:   Tue Jan 6 14:59:02 2015 -0500

    Remove private var_no_applicable_method capture
    
    * libguile/goops.c (var_no_applicable_method): Remove unused capture.
      (sym_no_applicable_method): Remove unused symbol.
---
 libguile/goops.c |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/libguile/goops.c b/libguile/goops.c
index 592508a..ffd3c99 100644
--- a/libguile/goops.c
+++ b/libguile/goops.c
@@ -75,13 +75,11 @@
 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_no_applicable_method = SCM_BOOL_F;
 static SCM var_change_class = SCM_BOOL_F;
 static SCM var_make = SCM_BOOL_F;
 
 SCM_SYMBOL (sym_slot_unbound, "slot-unbound");
 SCM_SYMBOL (sym_slot_missing, "slot-missing");
-SCM_SYMBOL (sym_no_applicable_method, "no-applicable-method");
 SCM_SYMBOL (sym_memoize_method_x, "memoize-method!");
 SCM_SYMBOL (sym_change_class, "change-class");
 
@@ -1703,8 +1701,6 @@ SCM_DEFINE (scm_sys_goops_loaded, "%goops-loaded", 0, 0, 
0,
     scm_module_variable (scm_module_goops, sym_slot_unbound);
   var_slot_missing =
     scm_module_variable (scm_module_goops, sym_slot_missing);
-  var_no_applicable_method =
-    scm_module_variable (scm_module_goops, sym_no_applicable_method);
   var_change_class =
     scm_module_variable (scm_module_goops, sym_change_class);
   setup_extended_primitive_generics ();



reply via email to

[Prev in Thread] Current Thread [Next in Thread]