eval/encode: Dump FF character correctly

This commit is contained in:
ZyX
2016-03-20 23:24:53 +03:00
parent 494b1c9bee
commit fd92e648ac
2 changed files with 6 additions and 0 deletions

View File

@@ -866,6 +866,7 @@ static const char escapes[][3] = {
[CAR] = "\\r",
['"'] = "\\\"",
['\\'] = "\\\\",
[FF] = "\\f",
};
static const char xdigits[] = "0123456789ABCDEF";