commit bash-20120322 snapshot

This commit is contained in:
Chet Ramey
2012-04-09 10:01:06 -04:00
parent 8a44b411b7
commit ec860d767b
18 changed files with 16908 additions and 1764 deletions
+15
View File
@@ -869,6 +869,21 @@ print_cond_command (cond)
}
#ifdef DEBUG
void
debug_print_word_list (s, list, sep)
char *s;
WORD_LIST *list;
char *sep;
{
WORD_LIST *w;
if (s)
fprintf (stderr, "%s: ", s);
for (w = list; w; w = w->next)
fprintf (stderr, "%s%s", w->word->word, w->next ? sep : "");
fprintf (stderr, "\n");
}
void
debug_print_cond_command (cond)
COND_COM *cond;