guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 05/61: Remove private var_no_applicable_method capture


From: Andy Wingo
Subject: [Guile-commits] 05/61: Remove private var_no_applicable_method capture
Date: Thu, 22 Jan 2015 18:52:58 +0000

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

commit d1024e964d1fdc1949903426ab55dc8fc91286b7
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 ab244ed..02366ed 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]