mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-07 04:10:49 +02:00
commit bash-20120322 snapshot
This commit is contained in:
+15
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user