aboutsummaryrefslogtreecommitdiffhomepage
path: root/misc/json.c
Commit message (Collapse)AuthorAge
* json: handle >\\"< fragments correctlyGravatar wm42014-10-21
| | | | | | It assumed that any >\"< sequence was an escape for >"<, but that is not the case with JSON such as >{"ducks":"\\"}<. In this case, the second >\< is obviously not starting an escape.
* lua: expose JSON parserGravatar wm42014-10-19
| | | | | | | The JSON parser was introduced for the IPC protocol, but I guess it's useful here too. The motivation for this commit is the same as with 8e4fa5fc (again).
* misc: add JSON parserGravatar wm42014-10-17