guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 01/01: Fix compilation of continuations.c


From: Andy Wingo
Subject: [Guile-commits] 01/01: Fix compilation of continuations.c
Date: Mon, 13 Feb 2017 04:15:55 -0500 (EST)

wingo pushed a commit to branch master
in repository guile.

commit 2c02bdda191eecd998c33b00c56752b8ec7378ab
Author: Andy Wingo <address@hidden>
Date:   Mon Feb 13 10:13:27 2017 +0100

    Fix compilation of continuations.c
    
    * libguile/continuations.c (scm_i_continuation_to_frame): Remove unused
      assignment.  The previous commit removed the declaration in order to
      silence an unused-assignment warning, but forgot to remove the
      assignment :/
---
 libguile/continuations.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libguile/continuations.c b/libguile/continuations.c
index 1c0392d..80914bc 100644
--- a/libguile/continuations.c
+++ b/libguile/continuations.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995,1996,1998,2000,2001,2004, 2006, 2008, 2009, 2010, 2011, 
2012, 2013, 2014 Free Software Foundation, Inc.
+/* Copyright (C) 1995,1996,1998,2000,2001,2004, 2006, 2008, 2009, 2010, 2011, 
2012, 2013, 2014, 2017 Free Software Foundation, Inc.
  * 
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
@@ -183,7 +183,6 @@ scm_i_continuation_to_frame (SCM continuation, struct 
scm_frame *frame)
     {
       struct scm_vm_cont *data = SCM_VM_CONT_DATA (cont->vm_cont);
 
-      stack_top = data->stack_bottom + data->stack_size;
       frame->stack_holder = data;
       frame->fp_offset = data->fp_offset;
       frame->sp_offset = data->stack_size;



reply via email to

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