commit bash-20060330 snapshot

This commit is contained in:
Chet Ramey
2011-12-03 22:46:45 -05:00
parent 591dd2e5f8
commit 4c4d2fbfda
19 changed files with 1029 additions and 36 deletions
-4
View File
@@ -507,7 +507,6 @@ make_bare_simple_command ()
command->value.Simple = temp = (SIMPLE_COM *)xmalloc (sizeof (SIMPLE_COM));
temp->flags = 0;
itrace("make_bare_simple_command: line_number = %d", line_number);
temp->line = line_number;
temp->words = (WORD_LIST *)NULL;
temp->redirects = (REDIRECT *)NULL;
@@ -533,10 +532,7 @@ make_simple_command (element, command)
command = make_bare_simple_command ();
if (element.word)
{
itrace("make_simple_command: adding %s", element.word->word);
command->value.Simple->words = make_word_list (element.word, command->value.Simple->words);
}
else if (element.redirect)
{
REDIRECT *r = element.redirect;