Fixing conflicts
Dependencies
- [2]
FMVDQHHCParsing binary file deletions in the change text format - [3]
YQMLICLWFix the hunk_roundtrip test, simplify code, improve test coverage, fix some edge cases. - [4]
5FI6SBEZRe-implement change printing and parsing - [5]
HW7DZ2B4Fixing the change parser
Change contents
- resurrect zombie in libpijul/src/change/parse.rs at line 68
let (i, contents) = if encoding.is_none() {(i, Vec::new())} else {parse_contents('-', encoding.clone(), i)?}; - edit in libpijul/src/change/parse.rs at line 68
let (i, content_edges) = map(opt(parse_edges), |o| o.unwrap_or(Vec::new()))(i)?; - edit in libpijul/src/change/parse.rs at line 74
let (i, content_edges) = map(opt(parse_edges), |o| o.unwrap_or(Vec::new()))(i)?; - resolve order conflict in libpijul/src/change/parse.rs at line 74