diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-07-10 13:42:51 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-07-10 13:42:51 -0700 |
commit | 0c6435a4d6a45d5947ed4f3a1f63172cdca00d36 (patch) | |
tree | 75007f01be703ddbc08de0df1cb48451263dbba2 /config.c | |
parent | Merge branch 'ab/sha1dc' (diff) | |
parent | wildmatch: remove unused wildopts parameter (diff) | |
download | tgif-0c6435a4d6a45d5947ed4f3a1f63172cdca00d36.tar.xz |
Merge branch 'ab/wildmatch'
Minor code cleanup.
* ab/wildmatch:
wildmatch: remove unused wildopts parameter
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -238,7 +238,7 @@ again: } ret = !wildmatch(pattern.buf + prefix, text.buf + prefix, - icase ? WM_CASEFOLD : 0, NULL); + icase ? WM_CASEFOLD : 0); if (!ret && !already_tried_absolute) { /* |