Skip to content

Commit 0980d9b

Browse files
author
Linus Torvalds
committed
Change the prefix for builtin diff generation.
It's silly, and it shouldn't matter, but every time I look at the diffs, I ended up just worrying why "l/" and "k/" as the prefixes. Junio says it's a tribute to linux-kernel, but graciously also said I can change it to something else. So make it "a/" and "b/" until somebody else complains ;)
1 parent bab5583 commit 0980d9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

diff.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ static void builtin_diff(const char *name,
103103
path0[i] = "/dev/null";
104104
path1[i] = "";
105105
} else {
106-
path0[i] = i ? "l/" : "k/";
106+
path0[i] = i ? "b/" : "a/";
107107
path1[i] = name_sq;
108108
}
109109
cmd_size += (strlen(path0[i]) + strlen(path1[i]) +

0 commit comments

Comments
 (0)