From c1cf6a407199f4ae0b247a3afce1ab09ea043f10 Mon Sep 17 00:00:00 2001 From: axel Date: Sat, 21 Feb 2009 20:43:30 +1000 Subject: [PATCH] Oops, I broke recursive wildcard completion darcs-hash:20090221104330-ac50b-ab9d487d3fc77fab32d9c49045d23b3e9124e618.gz --- expand.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/expand.c b/expand.c index 6f222e9..f731c77 100644 --- a/expand.c +++ b/expand.c @@ -109,11 +109,11 @@ parameter expansion. /** 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"~%" /** - Unclean characters. See \c is_clean(). + Unclean characters. See \c expand_is_clean(). */ #define UNCLEAN L"$*?\\\"'({})" @@ -1521,7 +1521,7 @@ static void remove_internal_separator( const void *s, int conv ) case ANY_STRING_RECURSIVE: in++; - *out++ = conv?L'*':ANY_STRING; + *out++ = conv?L'*':ANY_STRING_RECURSIVE; break; default: