mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 22:10:21 +02:00
(scm_dynthrow): Use >= instead of SCM_PTR_GE which
is now gone. Reported by Andreas Vögele.
This commit is contained in:
parent
e68ef9c82b
commit
5afcf08bb2
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* Copyright (C) 1995,1996,1998,2000,2001 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1995,1996,1998,2000,2001,2004 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
|
||||
|
@ -266,7 +266,7 @@ scm_dynthrow (SCM cont, SCM val)
|
|||
SCM_STACKITEM stack_top_element;
|
||||
|
||||
#if SCM_STACK_GROWS_UP
|
||||
if (SCM_PTR_GE (dst + continuation->num_stack_items, &stack_top_element))
|
||||
if (dst + continuation->num_stack_items >= &stack_top_element)
|
||||
grow_stack (cont, val);
|
||||
#else
|
||||
dst -= continuation->num_stack_items;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue