Skip to content

Commit 4004ece

Browse files
committed
fix a typo: s/ISNT/IS/
1 parent b3f19ef commit 4004ece

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/diff_generate.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -993,8 +993,8 @@ static int handle_unmatched_new_item(
993993
* only if it makes a difference -- ignore checks are expensive
994994
*/
995995
else if ((!contains_oitem ||
996-
DIFF_FLAG_ISNT_SET(diff, GIT_DIFF_INCLUDE_IGNORED | GIT_DIFF_RECURSE_IGNORED_DIRS |
997-
GIT_DIFF_ENABLE_FAST_UNTRACKED_DIRS)) &&
996+
DIFF_FLAG_IS_SET(diff, GIT_DIFF_INCLUDE_IGNORED | GIT_DIFF_RECURSE_IGNORED_DIRS |
997+
GIT_DIFF_ENABLE_FAST_UNTRACKED_DIRS)) &&
998998
git_iterator_current_is_ignored(info->new_iter))
999999
delta_type = GIT_DELTA_IGNORED;
10001000

0 commit comments

Comments
 (0)