summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-11-10skeleton MakefileHEADmasterAl Viro1-0/+8
I know, I know - should've done that from the very beginning...
2011-11-10getline(3) has appeared since that sucker got started...Al Viro1-4/+4
renamed to get_line() Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
2011-11-06we lose the last hunk information...Al Viro1-0/+5
Kudos to Artem for catching that one Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
2006-07-29rewrite getline() to avoid double-copy.Al Viro1-31/+60
it's read(2)-based now instead of fgets(3)-based, does all buffering itself and is considerably faster that way. Note that we spend a _lot_ of time in it while parsing the map - for large deltas the map can easily be *big*.
2006-07-29store key length in hash, pass it to hash lookup.Al Viro1-13/+17
speeds the things up and avoids ugliness in mapline() (we don't need to slap \0 after name only to restore it immediately), while we are at it.
2006-07-29fix a braino in mapline()Al Viro1-1/+1
it's %.*s, not %*s
2006-07-27make remap-log handle all instances in the lineAl Viro1-35/+40
2006-07-27kill -n and -pAl Viro2-35/+21
"original" and "new" prefix handling had been a bad idea; removed, documentation updated.
2006-07-27switch to saner defaultsAl Viro3-11/+13
Change default new prefix to "", update documentation. Get git-remap-data in line with diff-remap-data
2006-07-27Initial revisionAl Viro4-0/+555