diff options
author | Andy Wingo <wingo@pobox.com> | 2017-02-13 10:13:27 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2017-02-13 10:13:27 +0100 |
commit | 2c02bdda191eecd998c33b00c56752b8ec7378ab (patch) | |
tree | 005ff0912ed9c5d6f708209f2019ded8a3267722 /libguile | |
parent | 8e1af70c2c4ccc7fb19afa48ffd4662f95bb0f66 (diff) |
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 :/
Diffstat (limited to 'libguile')
-rw-r--r-- | libguile/continuations.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libguile/continuations.c b/libguile/continuations.c index 1c0392dbf..80914bc04 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; |