layout loading: allow comments in JSON files

next
Michael Stapelberg 2013-12-14 10:43:49 +01:00
parent 4add185025
commit 598498330a
1 changed files with 2 additions and 0 deletions

View File

@ -396,6 +396,8 @@ void tree_append_json(const char *filename) {
g = yajl_gen_alloc(NULL, NULL);
hand = yajl_alloc(&callbacks, NULL, NULL, (void*)g);
#endif
/* Allowing comments allows for more user-friendly layout files. */
yajl_config(hand, yajl_allow_comments, true);
yajl_status stat;
json_node = focused;
to_focus = NULL;