guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, master, updated. v2.1.0-135-g056e347


From: Mark H Weaver
Subject: [Guile-commits] GNU Guile branch, master, updated. v2.1.0-135-g056e347
Date: Thu, 08 Aug 2013 06:21:17 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=056e3470c4a0c18366c1da4f5052f36761824b70

The branch, master has been updated
       via  056e3470c4a0c18366c1da4f5052f36761824b70 (commit)
      from  789dd40b8b3c3dab230cbb407c8435b430d6a18a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 056e3470c4a0c18366c1da4f5052f36761824b70
Author: Mark H Weaver <address@hidden>
Date:   Thu Aug 8 02:19:46 2013 -0400

    Eliminate use of deprecated 'SCM_WTA_DISPATCH_2' in numbers.c.
    
    * libguile/numbers.c (scm_gcd): Use 'scm_wta_dispatch_2' not
      'SCM_WTA_DISPATCH_2'.

-----------------------------------------------------------------------

Summary of changes:
 libguile/numbers.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libguile/numbers.c b/libguile/numbers.c
index f549193..3cdc7fd 100644
--- a/libguile/numbers.c
+++ b/libguile/numbers.c
@@ -4175,7 +4175,7 @@ scm_gcd (SCM x, SCM y)
       else if (SCM_REALP (y) && scm_is_integer (y))
         goto handle_inexacts;
       else
-        SCM_WTA_DISPATCH_2 (g_gcd, x, y, SCM_ARG2, s_gcd);
+        return scm_wta_dispatch_2 (g_gcd, x, y, SCM_ARG2, s_gcd);
     }
   else if (SCM_REALP (x) && scm_is_integer (x))
     {


hooks/post-receive
-- 
GNU Guile



reply via email to

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