]> git.ipfire.org Git - thirdparty/bash.git/commitdiff
Bash-4.2 patch 10
authorChet Ramey <chet.ramey@case.edu>
Wed, 23 Nov 2011 01:01:00 +0000 (20:01 -0500)
committerChet Ramey <chet.ramey@case.edu>
Wed, 23 Nov 2011 01:01:00 +0000 (20:01 -0500)
patchlevel.h
print_cmd.c

index e7410c4242cca64f4fda285e93b67272445338f2..69439cb54cf75db1698bc2a6705eb76380af7785 100644 (file)
@@ -25,6 +25,6 @@
    regexp `^#define[   ]*PATCHLEVEL', since that's what support/mkversion.sh
    looks for to find the patch level (for the sccs version string). */
 
-#define PATCHLEVEL 9
+#define PATCHLEVEL 10
 
 #endif /* _PATCHLEVEL_H_ */
index 0d646ec5cbd524f856b500e44c624067f0823bb5..cd54b2f7bd6065621e087345e27e91ee3e5df6e3 100644 (file)
@@ -315,6 +315,7 @@ make_command_string_internal (command)
          cprintf ("( ");
          skip_this_indent++;
          make_command_string_internal (command->value.Subshell->command);
+         PRINT_DEFERRED_HEREDOCS ("");
          cprintf (" )");
          break;
 
@@ -592,6 +593,7 @@ print_arith_for_command (arith_for_command)
   newline ("do\n");
   indentation += indentation_amount;
   make_command_string_internal (arith_for_command->action);
+  PRINT_DEFERRED_HEREDOCS ("");
   semicolon ();
   indentation -= indentation_amount;
   newline ("done");
@@ -653,6 +655,7 @@ print_group_command (group_command)
     }
 
   make_command_string_internal (group_command->command);
+  PRINT_DEFERRED_HEREDOCS ("");
 
   if (inside_function_def)
     {