summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c24
1 files changed, 22 insertions, 2 deletions
diff --git a/lib.c b/lib.c
index 1d2c65b7..26966cbb 100644
--- a/lib.c
+++ b/lib.c
@@ -12609,8 +12609,6 @@ static void out_json_str(val str, val out)
ch == 0xFFFE || ch == 0xFFFF)
{
format(out, lit("\\u~,04X"), chr(ch), nao);
- } else if (ch >= 0xDC01 && ch < 0xDD00) {
- put_byte(num_fast(ch & 0xFF), out);
} else if (ch >= 0xFFFF) {
wchar_t c20 = ch - 0x10000;
wchar_t sg0 = 0xD800 + ((c20 >> 10) & 0x3FF);
@@ -13459,6 +13457,28 @@ val tostringp(val obj)
return get_string_from_stream(ss);
}
+val put_json(val obj, val stream_in, val flat)
+{
+ val stream = default_arg(stream_in, std_output);
+
+ if (default_null_arg(flat)) {
+ out_json_rec(obj, stream, 0);
+ } else {
+ val imode = set_indent_mode(stream, num_fast(indent_foff));
+ out_json_rec(obj, stream, 0);
+ set_indent_mode(stream, imode);
+ }
+
+ return t;
+}
+
+val put_jsonl(val obj, val stream, val flat)
+{
+ put_json(obj, stream, flat);
+ put_char(chr('\n'), stream);
+ return t;
+}
+
val tojson(val obj, val flat)
{
val ss = make_string_output_stream();