change: decode and print file deletions
Dependencies
- [2]
NEORNIZEchange: decode and print file moves - [*]
Q7TKZCJPAdd initial support for reading the offsets from a (fixed) change - [*]
XTVLIC24change: refactor to print_change()
Change contents
- edit in change.c at line 342
break;case FILE_DEL:change_decode_atom(binstat, &bhunk->filedel.del);if (bincode_getu8(binstat)) {change_decode_atom(binstat, &bhunk->filedel.contents);}slen = bincode_getu64(binstat);bhunk->filedel.path = bincode_getstr(binstat, slen);change_decode_encoding(binstat, &bhunk->filedel.encoding); - edit in change.c at line 709[2.1441][5.1789]
case FILE_DEL: {struct filedel *f = &hunk->filedel;printf(" %s\n", f->path);break;}