binary diff creates new chunk when no exact match found
Dependencies
- [2]
TGA6QXGIInitial support for binary diffs (conflicts are not yet supported in the output) - [3]
S7MAMMFWFormatting - [4]
4DNDMC7IFixing a number of bugs related to encodings (extra newlines + misdetection in linux2x)
Change contents
- edit in "libpijul/src/diff/bin.rs" at line 54
debug!("processing {:?}", j); - edit in "libpijul/src/diff/bin.rs" at line 56
let mut found = false; - edit in "libpijul/src/diff/bin.rs" at line 59
debug!("matched {:?}", h); - replacement in "libpijul/src/diff/bin.rs" at line 61
if old == &b[j..i] {found = old == &b[j..i];if found {debug!("old matched from {:?}-{:?}", j, i); - replacement in "libpijul/src/diff/bin.rs" at line 85
} else {}if !found {debug!("new {:?}", h);