summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-05-29 07:26:19 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-05-29 07:26:19 -0700
commitb3a49b161a6192d4b8c574f0cd7f9b16567cd834 (patch)
tree34d2b8aae7c999630bf3dc46fad6e36d24897b53 /lib.c
parentc8f12ee44d226924b89cdd764b65a5f6a4030b81 (diff)
downloadtxr-b3a49b161a6192d4b8c574f0cd7f9b16567cd834.tar.gz
txr-b3a49b161a6192d4b8c574f0cd7f9b16567cd834.tar.bz2
txr-b3a49b161a6192d4b8c574f0cd7f9b16567cd834.zip
json: escape slash in </ sequence
* lib.c (out_json_str): When the < character is seen, if the lookahead character is /, output the < and a backslash to escape the /. * txr.1: Moved description of special JSON output handling under tojson, and described the above escaping there also.
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib.c b/lib.c
index 75cbc739..aafc933a 100644
--- a/lib.c
+++ b/lib.c
@@ -12592,6 +12592,11 @@ static void out_json_str(val str, val out)
case '\t':
put_string(lit("\\t"), out);
break;
+ case '<':
+ put_char(chr(ch), out);
+ if (*cstr == '/')
+ put_char(chr('\\'), out);
+ break;
case 0xDC00:
put_string(lit("\\u0000"), out);
break;