mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
sxml->xml fix
* module/sxml/simple.scm (attribute-value->xml): Whoops, fix null case.
This commit is contained in:
parent
d9fff48e4c
commit
6901bad07d
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue