guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-132-ga5d8f


From: Mark H Weaver
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-132-ga5d8f98
Date: Thu, 28 Feb 2013 01:49:18 +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=a5d8f98c60344548f0b6a70828b95f2b2e1f7553

The branch, stable-2.0 has been updated
       via  a5d8f98c60344548f0b6a70828b95f2b2e1f7553 (commit)
      from  b946e08a6ae6e73bda1f76017fcb75f41cd4b288 (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 a5d8f98c60344548f0b6a70828b95f2b2e1f7553
Author: David Kastrup <address@hidden>
Date:   Wed Feb 27 20:45:08 2013 -0500

    Let reverse! accept arbitrary types as second argument (new_tail)
    
    * libguile/list.c (scm_reverse_x): remove typecheck for 2nd arg.
    
    Signed-off-by: Mark H Weaver <address@hidden>

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

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

diff --git a/libguile/list.c b/libguile/list.c
index 6c8f8be..d30f9e8 100644
--- a/libguile/list.c
+++ b/libguile/list.c
@@ -377,8 +377,6 @@ SCM_DEFINE (scm_reverse_x, "reverse!", 1, 1, 0,
   SCM_VALIDATE_LIST (1, lst);
   if (SCM_UNBNDP (new_tail))
     new_tail = SCM_EOL;
-  else
-    SCM_VALIDATE_LIST (2, new_tail);
 
   while (!SCM_NULL_OR_NIL_P (lst))
     {


hooks/post-receive
-- 
GNU Guile



reply via email to

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