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.0-115-g6f2ff


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.0-115-g6f2ff78
Date: Sat, 19 Mar 2011 22:12:48 +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=6f2ff78299f54b1fde9f2ff85cbabf876bea85b8

The branch, stable-2.0 has been updated
       via  6f2ff78299f54b1fde9f2ff85cbabf876bea85b8 (commit)
      from  f60a7648d5926555c7760364a6fbb7dc0cf60720 (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 6f2ff78299f54b1fde9f2ff85cbabf876bea85b8
Author: Andy Wingo <address@hidden>
Date:   Sat Mar 19 23:12:40 2011 +0100

    fix new-frame push in call/cc
    
    * libguile/vm-i-system.c (call/cc): Whoops, fix the new-frame push
      here.  A little birdie tells me a test case is coming soon.

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

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

diff --git a/libguile/vm-i-system.c b/libguile/vm-i-system.c
index 980d22a..71c5281 100644
--- a/libguile/vm-i-system.c
+++ b/libguile/vm-i-system.c
@@ -1179,7 +1179,7 @@ VM_DEFINE_INSTRUCTION (65, call_cc, "call/cc", 0, 1, 1)
   cont = scm_i_make_continuation (&first, vm, vm_cont);
   if (first) 
     {
-      PUSH ((SCM)fp); /* dynamic link */
+      PUSH (0); /* dynamic link */
       PUSH (0);  /* mvra */
       PUSH (0);  /* ra */
       PUSH (proc);


hooks/post-receive
-- 
GNU Guile



reply via email to

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