kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 760dff8b3cc3dbcc511f31cbe013be012a181a1e
parent e712e3a9517f5dae027e9607cf20d83fb98a2d89
Author: Joris Vink <joris@coders.se>
Date:   Thu, 19 Nov 2020 09:55:41 +0100

allow tab escape in JSON strings.

Diffstat:
src/json.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/json.c b/src/json.c @@ -827,6 +827,9 @@ json_get_string(struct kore_json *json) case 'r': ch = '\r'; break; + case 't': + ch = '\t'; + break; case 'u': default: /* XXX - not supported. */