summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9765800)
raw | patch | inline | side by side (parent: 9765800)
author | Linus Torvalds <torvalds@ppc970.osdl.org> | |
Tue, 31 May 2005 22:05:59 +0000 (15:05 -0700) | ||
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | |
Tue, 31 May 2005 22:05:59 +0000 (15:05 -0700) |
It just causes things like "git-apply --stat" to parse traditional
patch headers differently depending on what your index is, which
is nasty.
patch headers differently depending on what your index is, which
is nasty.
apply.c | patch | blob | history |
index 74908cd4d41a34a74449bee4884c0d2ea0e8fe1c..dba8292267abe48b6f671315a3366d28b33fe0e3 100644 (file)
--- a/apply.c
+++ b/apply.c
return !memcmp("/dev/null", str, 9) && isspace(str[9]);
}
-#define TERM_EXIST 1
-#define TERM_SPACE 2
-#define TERM_TAB 4
+#define TERM_SPACE 1
+#define TERM_TAB 2
static int name_terminate(const char *name, int namelen, int c, int terminate)
{
if (c == '\t' && !(terminate & TERM_TAB))
return 0;
- /*
- * Do we want an existing name? Return false and
- * continue if it's not there.
- */
- if (terminate & TERM_EXIST)
- return cache_name_pos(name, namelen) >= 0;
-
return 1;
}
@@ -205,11 +197,11 @@ static void parse_traditional_patch(const char *first, const char *second, struc
} else if (is_dev_null(second)) {
patch->is_new = 0;
patch->is_delete = 1;
- name = find_name(first, NULL, p_value, TERM_EXIST | TERM_SPACE | TERM_TAB);
+ name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
patch->old_name = name;
} else {
- name = find_name(first, NULL, p_value, TERM_EXIST | TERM_SPACE | TERM_TAB);
- name = find_name(second, name, p_value, TERM_EXIST | TERM_SPACE | TERM_TAB);
+ name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
+ name = find_name(second, name, p_value, TERM_SPACE | TERM_TAB);
patch->old_name = patch->new_name = name;
}
if (!name)