rename ACCEPT_INCOMPLETE to FOR_COMPLETIONS, which is clearer

This commit is contained in:
ridiculousfish
2015-08-02 16:43:37 -07:00
parent b55c13f275
commit a3f8e27bf8
6 changed files with 26 additions and 26 deletions

View File

@@ -1435,7 +1435,7 @@ static void test_expand()
expand_test(L"a*", EXPAND_SKIP_WILDCARDS, L"a*", 0,
L"Cannot skip wildcard expansion");
expand_test(L"/bin/l\\0", ACCEPT_INCOMPLETE, 0,
expand_test(L"/bin/l\\0", FOR_COMPLETIONS, 0,
L"Failed to handle null escape in expansion");
expand_test(L"foo\\$bar", EXPAND_SKIP_VARIABLES, L"foo$bar", 0,