GNU bug report logs -
#13838
[PATCH] Fix duplicate removal of with-fluids
Previous Next
Reported by: David Kastrup <dak <at> gnu.org>
Date: Thu, 28 Feb 2013 09:44:01 UTC
Severity: normal
Tags: patch
Done: Mark H Weaver <mhw <at> netris.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
The following code displayed #f:
(define a (make-fluid))
(define b (make-fluid))
(with-fluids ((a 3) (a 1) (b 2))
(display (fluid-ref b)))
In general, removing any duplicate that is not right at the end of the
(remaining) list will exhibit this problem. The fluids and vals
arguments are modified in situ; the previous code only modified vals.
---
libguile/fluids.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libguile/fluids.c b/libguile/fluids.c
index f1c09cb..bd59e26 100644
--- a/libguile/fluids.c
+++ b/libguile/fluids.c
@@ -326,6 +326,8 @@ scm_i_make_with_fluids (size_t n, SCM *fluids, SCM *vals)
{
vals[i] = vals[j]; /* later bindings win */
n--;
+ fluids[j] = fluids[n];
+ vals[j] = vals[n];
break;
}
}
--
1.7.10.4
This bug report was last modified 12 years and 88 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.