guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, master, updated. release_1-9-4-37-g15a


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-4-37-g15ab466
Date: Sat, 24 Oct 2009 14:18:17 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=15ab4662998a57a5c72efe30f9165aac813ee762

The branch, master has been updated
       via  15ab4662998a57a5c72efe30f9165aac813ee762 (commit)
      from  32b12f40509e4bcb0823e1bb2a57e50af14560b5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 15ab4662998a57a5c72efe30f9165aac813ee762
Author: Andy Wingo <address@hidden>
Date:   Sat Oct 24 16:18:56 2009 +0200

    procedure property table is only key-weak, not doubly-weak
    
    * libguile/procprop.c: Make the procedure property table only key-weak.
      It seems that we want the association as long as the key is around.

-----------------------------------------------------------------------

Summary of changes:
 libguile/procprop.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libguile/procprop.c b/libguile/procprop.c
index c066eca..dcbfba7 100644
--- a/libguile/procprop.c
+++ b/libguile/procprop.c
@@ -243,7 +243,7 @@ SCM_DEFINE (scm_set_procedure_property_x, 
"set-procedure-property!", 3, 0, 0,
 void
 scm_init_procprop ()
 {
-  non_closure_props = scm_make_doubly_weak_hash_table (SCM_UNDEFINED);
+  non_closure_props = scm_make_weak_key_hash_table (SCM_UNDEFINED);
 #include "libguile/procprop.x"
 }
 


hooks/post-receive
-- 
GNU Guile




reply via email to

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