Skip to content

Commit

Permalink
Merge branch 'maint-1.8.5' into maint
Browse files Browse the repository at this point in the history
* maint-1.8.5:
  t7300: repair filesystem permissions with test_when_finished
  enums: remove trailing ',' after last item in enum
  • Loading branch information
Junio C Hamano committed Jul 2, 2014
2 parents 341e7e8 + 45067fc commit c2f7b10
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion builtin/clean.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ enum color_clean {
CLEAN_COLOR_PROMPT = 2,
CLEAN_COLOR_HEADER = 3,
CLEAN_COLOR_HELP = 4,
CLEAN_COLOR_ERROR = 5,
CLEAN_COLOR_ERROR = 5
};

#define MENU_OPTS_SINGLETON 01
Expand Down
2 changes: 1 addition & 1 deletion pretty.c
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ static void add_rfc822_quoted(struct strbuf *out, const char *s, int len)

enum rfc2047_type {
RFC2047_SUBJECT,
RFC2047_ADDRESS,
RFC2047_ADDRESS
};

static int is_rfc2047_special(char ch, enum rfc2047_type type)
Expand Down
4 changes: 2 additions & 2 deletions t/t7300-clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -426,10 +426,10 @@ test_expect_success SANITY 'removal failure' '
mkdir foo &&
touch foo/bar &&
test_when_finished "chmod 755 foo" &&
(exec <foo/bar &&
chmod 0 foo &&
test_must_fail git clean -f -d &&
chmod 755 foo)
test_must_fail git clean -f -d)
'

test_expect_success 'nested git work tree' '
Expand Down

0 comments on commit c2f7b10

Please sign in to comment.