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-13-114-g6


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-13-114-g6901bad
Date: Thu, 02 Dec 2010 21:20:40 +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=6901bad07d60e19eabdf3ecbcba19b1b1e45ca1b

The branch, master has been updated
       via  6901bad07d60e19eabdf3ecbcba19b1b1e45ca1b (commit)
      from  d9fff48e4c8139e410b7bca26503d5c01d2dddec (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 6901bad07d60e19eabdf3ecbcba19b1b1e45ca1b
Author: Andy Wingo <address@hidden>
Date:   Thu Dec 2 22:24:26 2010 +0100

    sxml->xml fix
    
    * module/sxml/simple.scm (attribute-value->xml): Whoops, fix null case.

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

Summary of changes:
 module/sxml/simple.scm |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/module/sxml/simple.scm b/module/sxml/simple.scm
index be1dc4e..dcef3b2 100644
--- a/module/sxml/simple.scm
+++ b/module/sxml/simple.scm
@@ -70,6 +70,8 @@ argument, @var{port}, which defaults to the current input 
port."
    ((pair? value)
     (attribute-value->xml (car value) port)
     (attribute-value->xml (cdr value) port))
+   ((null? value)
+    *unspecified*)
    ((string? value)
     (string->escaped-xml value port))
    ((procedure? value)


hooks/post-receive
-- 
GNU Guile



reply via email to

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