Commit 2221e69bb9670b40679974b572738e0472db97da
1 parent
3beac2a0
cosmetic
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
calexium_lib/web/CXM_json.anubis
| ... | ... | @@ -100,7 +100,7 @@ define List(Word8) |
| 100 | 100 | { |
| 101 | 101 | [] then new_string, |
| 102 | 102 | [h . t] then |
| 103 | - if (h >=+ 32 & h +=< 33) | (h >=+ 35 & h +=< 38) |(h >=+ 40 & h +=< 91) | h >=+ 93 then // Allowed characters for JSON see RFC4627 + " ' " | |
| 103 | + if (h >=+ 32 & h +=< 33) | (h >=+ 35 & h +=< 38) | (h >=+ 40 & h +=< 91) | h >=+ 93 then // Allowed characters for JSON see RFC4627 + " ' " | |
| 104 | 104 | _format_json_esc(t, [h . new_string]) |
| 105 | 105 | else |
| 106 | 106 | _format_json_esc(t, [h, '\\' . new_string]) | ... | ... |