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-150-g88c0a


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.3-150-g88c0a1d
Date: Thu, 12 Jan 2012 14:16:11 +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=88c0a1d5911e68aed20675948b15d7e67896df87

The branch, stable-2.0 has been updated
       via  88c0a1d5911e68aed20675948b15d7e67896df87 (commit)
      from  486bd70d5309469edd27a73f5663044a78526856 (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 88c0a1d5911e68aed20675948b15d7e67896df87
Author: Andy Wingo <address@hidden>
Date:   Thu Jan 12 15:15:41 2012 +0100

    fix array printing
    
    * libguile/print.c (iprin1): Fix unmatched ENTER_NESTED_DATA.  Fixes
      http://debbugs.gnu.org/10482.  Thanks to Daniel Llorens for the
      report.

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

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

diff --git a/libguile/print.c b/libguile/print.c
index f144a64..2eda4bb 100644
--- a/libguile/print.c
+++ b/libguile/print.c
@@ -1,5 +1,5 @@
 /* Copyright (C) 1995-1999, 2000, 2001, 2002, 2003, 2004, 2006, 2008,
- *   2009, 2010, 2011 Free Software Foundation, Inc.
+ *   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
@@ -649,6 +649,7 @@ iprin1 (SCM exp, SCM port, scm_print_state *pstate)
        case scm_tc7_array:
          ENTER_NESTED_DATA (pstate, exp, circref);
           scm_i_print_array (exp, port, pstate);
+          EXIT_NESTED_DATA (pstate);
           break;
        case scm_tc7_bytevector:
          scm_i_print_bytevector (exp, port, pstate);


hooks/post-receive
-- 
GNU Guile



reply via email to

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