commit bash-20100318 snapshot

This commit is contained in:
Chet Ramey
2011-12-12 21:56:08 -05:00
parent 640b1cb0f7
commit 1b13a2904a
20 changed files with 2397 additions and 78 deletions
+8
View File
@@ -4816,7 +4816,15 @@ history_delimiting_chars ()
add the first line of the body of the here document (the second line
of the command). */
if (parser_state & PST_HEREDOC)
#if 0
{
if (last_read_token == WORD && (token_before_that == LESS_LESS || token_before_that == LESS_LESS_MINUS))
return ("\n"); /* XXX -- need to clean up in bash_add_history */
#endif
return (current_command_line_count == 2 ? "\n" : "");
#if 0
}
#endif
/* First, handle some special cases. */
/*(*/