diff -ur v11/ezyaml.c v12/ezyaml.c --- v11/ezyaml.c 2018-09-08 16:51:20.000000000 +0900 +++ v12/ezyaml.c 2018-09-08 17:12:53.000000000 +0900 @@ -244,7 +244,7 @@ get_dict(int idt, struct obj *lines) { struct obj *str = list_pop_top(lines); - char *s = obj_buf(str); + char *s = slice_tail( obj_buf(str), idt ); int idx = find_colon_idx(s); struct obj *sk = str_new_n(s, idx);