diff --git a/calexium_lib/web/CXM_json.anubis b/calexium_lib/web/CXM_json.anubis index 805fd2c..e2e967f 100644 --- a/calexium_lib/web/CXM_json.anubis +++ b/calexium_lib/web/CXM_json.anubis @@ -100,7 +100,7 @@ define List(Word8) { [] then new_string, [h . t] then - if (h >=+ 32 & h +=< 33) | (h >=+ 35 & h +=< 38) |(h >=+ 40 & h +=< 91) | h >=+ 93 then // Allowed characters for JSON see RFC4627 + " ' " + if (h >=+ 32 & h +=< 33) | (h >=+ 35 & h +=< 38) | (h >=+ 40 & h +=< 91) | h >=+ 93 then // Allowed characters for JSON see RFC4627 + " ' " _format_json_esc(t, [h . new_string]) else _format_json_esc(t, [h, '\\' . new_string]) -- libgit2 0.21.4