emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#13843: closed ([PATCH] Fix "later bindings win" st


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#13843: closed ([PATCH] Fix "later bindings win" stipulation for with-fluids)
Date: Thu, 28 Feb 2013 23:51:02 +0000

Your message dated Thu, 28 Feb 2013 18:48:15 -0500
with message-id <address@hidden>
and subject line Re: bug#13843: [PATCH] Fix "later bindings win" stipulation 
for with-fluids
has caused the debbugs.gnu.org bug report #13843,
regarding [PATCH] Fix "later bindings win" stipulation for with-fluids
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
13843: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13843
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] Fix "later bindings win" stipulation for with-fluids Date: Thu, 28 Feb 2013 11:04:06 +0100
The following code displayed 2:

(define a (make-fluid))
(with-fluids ((a 1) (a 2) (a 3))
             (display (fluid-ref a)))
---
 libguile/fluids.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libguile/fluids.c b/libguile/fluids.c
index bd59e26..11309c9 100644
--- a/libguile/fluids.c
+++ b/libguile/fluids.c
@@ -321,7 +321,7 @@ scm_i_make_with_fluids (size_t n, SCM *fluids, SCM *vals)
     size_t i, j = n;
 
     while (j--)
-      for (i = 0; i < j; i++)
+      for (i = j; i--;)
         if (scm_is_eq (fluids[i], fluids[j]))
           {
             vals[i] = vals[j]; /* later bindings win */
-- 
1.7.10.4




--- End Message ---
--- Begin Message --- Subject: Re: bug#13843: [PATCH] Fix "later bindings win" stipulation for with-fluids Date: Thu, 28 Feb 2013 18:48:15 -0500 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (gnu/linux)
Fixed in 8dd01861a9a0331b912a1ae6310e64eb6b47c29c.

   Thanks!
     Mark


--- End Message ---

reply via email to

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