guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 07/25: scm_make cleanup


From: Andy Wingo
Subject: [Guile-commits] 07/25: scm_make cleanup
Date: Mon, 19 Jan 2015 10:41:07 +0000

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

commit 827490f2d09212623f4ae12093c285d32f0e1e07
Author: Andy Wingo <address@hidden>
Date:   Tue Jan 13 21:59:03 2015 +0100

    scm_make cleanup
    
    * libguile/goops.c (scm_make): Remove SCM_DEFINE around scm_make; the
      real definition is in Scheme.
---
 libguile/goops.c |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/libguile/goops.c b/libguile/goops.c
index bb6f918..da8cb70 100644
--- a/libguile/goops.c
+++ b/libguile/goops.c
@@ -796,15 +796,11 @@ scm_wta_dispatch_n (SCM gf, SCM args, int pos, const char 
*subr)
 
 
 
-SCM_DEFINE (scm_make, "make",  0, 0, 1,
-           (SCM args),
-           "Make a new object.  @var{args} must contain the class and\n"
-           "all necessary initialization information.")
-#define FUNC_NAME s_scm_make
+SCM
+scm_make (SCM args)
 {
   return scm_apply_0 (scm_variable_ref (var_make), args);
 }
-#undef FUNC_NAME
 
 
 



reply via email to

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