applyinf fix for:

0000155: variable expansion with braces in backticks in msh
This commit is contained in:
Paul Fox 2005-07-20 18:33:12 +00:00
parent c3850c83d9
commit 54690dc0b2

View File

@ -4290,7 +4290,7 @@ int quoted;
}
var_name[var_index++] = *src++;
while (isalnum(*src))
while (isalnum(*src) || *src=='_')
var_name[var_index++] = *src++;
var_name[var_index] = 0;