diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-12-16 11:09:31 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-12-16 12:47:15 -0800 |
commit | a1bb8f45f1590f812badceea0b7c120074ec3e85 (patch) | |
tree | 3ce41a927bcca4baa26680cc33c79aa15fdc4795 /diff.c | |
parent | e25e2b4201716a912b29397515a858238497dbdd (diff) | |
parent | 527b9d704d929a2fff2f9bf1c5e2856725c1416d (diff) | |
download | git-a1bb8f45f1590f812badceea0b7c120074ec3e85.tar.gz |
Merge branch 'maint' to sync with 1.6.5.7
* maint:
Git 1.6.5.7
worktree: don't segfault with an absolute pathspec without a work tree
ignore unknown color configuration
help.autocorrect: do not run a command if the command given is junk
Illustrate "filter" attribute with an example
Diffstat (limited to 'diff.c')
-rw-r--r-- | diff.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -63,7 +63,7 @@ static int parse_diff_color_slot(const char *var, int ofs) return DIFF_WHITESPACE; if (!strcasecmp(var+ofs, "func")) return DIFF_FUNCINFO; - die("bad config variable '%s'", var); + return -1; } static int git_config_rename(const char *var, const char *value) @@ -122,6 +122,8 @@ int git_diff_basic_config(const char *var, const char *value, void *cb) if (!prefixcmp(var, "diff.color.") || !prefixcmp(var, "color.diff.")) { int slot = parse_diff_color_slot(var, 11); + if (slot < 0) + return 0; if (!value) return config_error_nonbool(var); color_parse(value, var, diff_colors[slot]); |