guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.3-173-gfb8b2


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.3-173-gfb8b2a9
Date: Sun, 22 Jan 2012 23:06:18 +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=fb8b2a9d6006077700e84b24d824180d2a433e1c

The branch, stable-2.0 has been updated
       via  fb8b2a9d6006077700e84b24d824180d2a433e1c (commit)
      from  967394bca716f70b65bdb243b748859a1e3ab8a6 (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 fb8b2a9d6006077700e84b24d824180d2a433e1c
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jan 23 00:06:14 2012 +0100

    Print the address of hash tables.
    
    * libguile/hashtab.c (scm_i_hashtable_print): Print the address of EXP.

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

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

diff --git a/libguile/hashtab.c b/libguile/hashtab.c
index c4f2b5e..1b02d4b 100644
--- a/libguile/hashtab.c
+++ b/libguile/hashtab.c
@@ -1,5 +1,6 @@
-/* Copyright (C) 1995,1996,1998,1999,2000,2001, 2003, 2004, 2006, 2008, 2009, 
2010, 2011 Free Software Foundation, Inc.
- * 
+/* Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2006,
+ *   2008, 2009, 2010, 2011, 2012 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 License
  * as published by the Free Software Foundation; either version 3 of
@@ -394,6 +395,8 @@ scm_i_hashtable_print (SCM exp, SCM port, scm_print_state 
*pstate)
   else if (SCM_HASHTABLE_DOUBLY_WEAK_P (exp))
     scm_puts ("doubly-weak-", port);
   scm_puts ("hash-table ", port);
+  scm_uintprint (SCM2PTR (exp), 16, port);
+  scm_putc (' ', port);
   scm_uintprint (SCM_HASHTABLE_N_ITEMS (exp), 10, port);
   scm_putc ('/', port);
   scm_uintprint (SCM_SIMPLE_VECTOR_LENGTH (SCM_HASHTABLE_VECTOR (exp)),


hooks/post-receive
-- 
GNU Guile



reply via email to

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