Reviewed by Maciej.
http://bugzilla.opendarwin.org/show_bug.cgi?id=9296
Performance improvement for svn-create-patch
* Scripts/svn-create-patch: Undef $indexPath after all paths have been fixed for a given patch.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@14713
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-06-03 David Kilzer <ddkilzer@kilzer.net>
+
+ Reviewed by Maciej.
+
+ http://bugzilla.opendarwin.org/show_bug.cgi?id=9296
+ Performance improvement for svn-create-patch
+
+ * Scripts/svn-create-patch: Undef $indexPath after all paths have been fixed for a given patch.
+
2006-06-03 David Kilzer <ddkilzer@kilzer.net>
Reviewed by darin.
# Fix paths on diff, ---, and +++ lines to match preceding Index: line.
s/\S+$/$indexPath/ if /^diff/;
s/^--- \S+/--- $indexPath/;
- s/^\+\+\+ \S+/+++ $indexPath/;
+ s/^\+\+\+ \S+/+++ $indexPath/ && undef $indexPath;
}
print;
}