Skip to content

Commit

Permalink
Oops, I broke recursive wildcard completion
Browse files Browse the repository at this point in the history
darcs-hash:20090221104330-ac50b-ab9d487d3fc77fab32d9c49045d23b3e9124e618.gz
  • Loading branch information
liljencrantz committed Feb 21, 2009
1 parent 972f3e1 commit c1cf6a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions expand.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"$*?\\\"'({})"

Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit c1cf6a4

Please sign in to comment.