diff options
Diffstat (limited to 'json-parser.c')
-rw-r--r-- | json-parser.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/json-parser.c b/json-parser.c index 1c88ed898e..70b9b6f967 100644 --- a/json-parser.c +++ b/json-parser.c @@ -205,6 +205,10 @@ static QString *qstring_from_escaped_str(JSONParserContext *ctxt, QObject *token qstring_append(str, "\b"); ptr++; break; + case 'f': + qstring_append(str, "\f"); + ptr++; + break; case 'n': qstring_append(str, "\n"); ptr++; |