diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-04-09 23:08:26 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-04-09 23:08:26 +0200 |
commit | dd9eedeaedb8f80e504ce851ffb2a8e7e838c936 (patch) | |
tree | 935accab1e58fddd115e003757d5c256310e814d | |
parent | aad8e3cbc5dbf931fe88ea75050d413d39f7b37c (diff) |
Specify xmlns.
-rw-r--r-- | pict.scm | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -112,7 +112,8 @@ (lambda (record port) (let* ((xml (with-output-to-string (lambda _ (sxml->xml `(svg (@ (width ,(pict-width record)) - (height ,(pict-height record))) + (height ,(pict-height record)) + (xmlns "http://www.w3.org/2000/svg")) ,(pict-sxml record)))))) (name (string-append "/tmp/geiser-" (number->string (string-hash xml)) |