Adjusting the parsing of new directories to the recent change in parsing binary changes from text patches
Dependencies
- [2]
HODZ2KUFSolving a conflict - [3]
YQMLICLWFix the hunk_roundtrip test, simplify code, improve test coverage, fix some edge cases. - [4]
OOJNAY34allow LF or CRLF when parsing change headers - [5]
HW7DZ2B4Fixing the change parser - [6]
5FI6SBEZRe-implement change printing and parsing
Change contents
- replacement in libpijul/src/change/parse.rs at line 123
let (i, contents) = parse_contents('+', encoding.clone(), i)?;let (i, contents) = if let PrintablePerms::IsDir = perms {(i, Vec::new())} else {parse_contents('+', encoding.clone(), i)?};