Huge upade containing several bugfixes related to i18n, and a huge number of new translatable strings, including almost all description messages for command specific completions

darcs-hash:20060108025656-ac50b-e2309829a0afa6b3270d13814e9600d0fd372407.gz
This commit is contained in:
axel
2006-01-08 12:56:56 +10:00
parent b33d3f78b1
commit 690648e1b0
126 changed files with 8873 additions and 2253 deletions

9
exec.c
View File

@@ -1248,7 +1248,14 @@ int exec_subshell( const wchar_t *cmd,
wchar_t *el;
*end=0;
el = str2wcs( begin );
al_push( l, el );
if( !el )
{
debug( 0, L"Subshell returned illegal string, discarded one entry" );
}
else
{
al_push( l, el );
}
begin = end+1;
break;
}