aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/writer.c8
-rw-r--r--tests/good/test-backspace.nt6
2 files changed, 9 insertions, 5 deletions
diff --git a/src/writer.c b/src/writer.c
index 83ad6e20..5b896f94 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -305,11 +305,15 @@ write_text(SerdWriter* writer, TextContext ctx,
case '\n': len += sink("\\n", 2, writer); continue;
case '\r': len += sink("\\r", 2, writer); continue;
case '\t': len += sink("\\t", 2, writer); continue;
- case '\b': len += sink("\\b", 2, writer); continue;
- case '\f': len += sink("\\f", 2, writer); continue;
case '"': len += sink("\\\"", 2, writer); continue;
default: break;
}
+ if (writer->syntax != SERD_NTRIPLES) {
+ switch (in) {
+ case '\b': len += sink("\\b", 2, writer); continue;
+ case '\f': len += sink("\\f", 2, writer); continue;
+ }
+ }
}
size_t size = 0;
diff --git a/tests/good/test-backspace.nt b/tests/good/test-backspace.nt
index 3a110da6..3dfffa38 100644
--- a/tests/good/test-backspace.nt
+++ b/tests/good/test-backspace.nt
@@ -1,3 +1,3 @@
-<http://example.org/thing> <http://example.org/label> "\b" .
-<http://example.org/thing> <http://example.org/label> "\b" .
-<http://example.org/thing> <http://example.org/label> "\n\b\n" .
+<http://example.org/thing> <http://example.org/label> "\u0008" .
+<http://example.org/thing> <http://example.org/label> "\u0008" .
+<http://example.org/thing> <http://example.org/label> "\n\u0008\n" .