mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 21:10:27 +02:00
* debug.c (scm_reverse_lookup): Bugfix: Reinserted SCM_NIMP.
This commit is contained in:
parent
dcf8fb3e65
commit
f1e1c997b7
1 changed files with 1 additions and 1 deletions
|
@ -500,7 +500,7 @@ SCM
|
||||||
scm_reverse_lookup (SCM env, SCM data)
|
scm_reverse_lookup (SCM env, SCM data)
|
||||||
{
|
{
|
||||||
SCM names, values;
|
SCM names, values;
|
||||||
while (SCM_CONSP (SCM_CAR (env)))
|
while (SCM_NIMP (env) && SCM_SLOPPY_CONSP (SCM_CAR (env)))
|
||||||
{
|
{
|
||||||
names = SCM_CAAR (env);
|
names = SCM_CAAR (env);
|
||||||
values = SCM_CDAR (env);
|
values = SCM_CDAR (env);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue