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.10-2-ge26ab0


From: Mark H Weaver
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.10-2-ge26ab06
Date: Thu, 20 Mar 2014 01:56:47 +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=e26ab067b2073c1eb5ace13d069674515b9f97c6

The branch, stable-2.0 has been updated
       via  e26ab067b2073c1eb5ace13d069674515b9f97c6 (commit)
      from  2be7131ee0c38336483226657872a8faa62a2562 (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 e26ab067b2073c1eb5ace13d069674515b9f97c6
Author: Mark H Weaver <address@hidden>
Date:   Wed Mar 19 17:55:20 2014 -0400

    simple-format: Don't assume the current output port is valid.
    
    * libguile/print.c (scm_simple_format): Validate the current output
      port.

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

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

diff --git a/libguile/print.c b/libguile/print.c
index ae98af4..60683b5 100644
--- a/libguile/print.c
+++ b/libguile/print.c
@@ -1468,6 +1468,7 @@ SCM_DEFINE (scm_simple_format, "simple-format", 2, 0, 1,
   if (scm_is_eq (destination, SCM_BOOL_T))
     {
       destination = port = scm_current_output_port ();
+      SCM_VALIDATE_OPORT_VALUE (0, destination);
     }
   else if (scm_is_false (destination))
     {


hooks/post-receive
-- 
GNU Guile



reply via email to

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