mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-03-25 04:22:04 +08:00
Oops, I broke recursive wildcard completion
darcs-hash:20090221104330-ac50b-ab9d487d3fc77fab32d9c49045d23b3e9124e618.gz
This commit is contained in:
parent
972f3e121e
commit
c1cf6a4071
6
expand.c
6
expand.c
@ -109,11 +109,11 @@ parameter expansion.
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
Characters which make a string unclean if they are the first
|
Characters which make a string unclean if they are the first
|
||||||
character of the string. See \c is_clean().
|
character of the string. See \c expand_is_clean().
|
||||||
*/
|
*/
|
||||||
#define UNCLEAN_FIRST L"~%"
|
#define UNCLEAN_FIRST L"~%"
|
||||||
/**
|
/**
|
||||||
Unclean characters. See \c is_clean().
|
Unclean characters. See \c expand_is_clean().
|
||||||
*/
|
*/
|
||||||
#define UNCLEAN L"$*?\\\"'({})"
|
#define UNCLEAN L"$*?\\\"'({})"
|
||||||
|
|
||||||
@ -1521,7 +1521,7 @@ static void remove_internal_separator( const void *s, int conv )
|
|||||||
|
|
||||||
case ANY_STRING_RECURSIVE:
|
case ANY_STRING_RECURSIVE:
|
||||||
in++;
|
in++;
|
||||||
*out++ = conv?L'*':ANY_STRING;
|
*out++ = conv?L'*':ANY_STRING_RECURSIVE;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user