commit bash-20140117 snapshot

This commit is contained in:
Chet Ramey
2014-02-04 09:32:26 -05:00
parent 72a05c753c
commit 4a2c75c650
35 changed files with 20547 additions and 10 deletions
+8 -1
View File
@@ -3504,6 +3504,7 @@ execute_cond_node (cond)
{
int result, invert, patmatch, rmatch, mflags, ignore;
char *arg1, *arg2;
char *t1, *t2;
invert = (cond->flags & CMD_INVERT_RETURN);
ignore = (cond->flags & CMD_IGNORE_RETURN);
@@ -3581,7 +3582,13 @@ execute_cond_node (cond)
#if defined (ARRAY_VARS)
mflags |= SHMAT_SUBEXP;
#endif
#if 0
t1 = strescape(arg1);
t2 = strescape(arg2);
itrace("execute_cond_node: sh_regmatch on `%s' and `%s'", t1, t2);
free(t1);
free(t2);
#endif
result = sh_regmatch (arg1, arg2, mflags);
}
else