From f4b25c02971b82cd841d3f6f7afd020b97825226 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 26 Dec 2011 21:13:07 +0000 Subject: Escape non-printable ASCII characters in ASCII output (fix #795). git-svn-id: http://svn.drobilla.net/serd/trunk@278 490d8e77-9747-427b-9fa3-0b8f29cee8a0 --- src/writer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/writer.c') diff --git a/src/writer.c b/src/writer.c index a9209f80..735dcaaf 100644 --- a/src/writer.c +++ b/src/writer.c @@ -145,7 +145,8 @@ write_text(SerdWriter* writer, TextContext ctx, if ((in & 0x80) == 0) { // Starts with `0' size = 1; c = in & 0x7F; - if (in_range(c, 0x20, 0x7E) || (ctx != WRITE_URI && is_space(c))) { + if (in_range(c, 0x20, 0x7E) + || (is_space(c) && ctx == WRITE_LONG_STRING)) { sink(&in, 1, writer); // Print ASCII character } else { snprintf(escape, 7, "\\u%04X", c); -- cgit v1.2.1