From: Chet Ramey Date: Tue, 10 Jul 2012 13:44:32 +0000 (-0400) Subject: Bash-4.2 patch 34 X-Git-Tag: bash-4.3~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=801b47cba557222becb1d6015e5664bc2405f52a;hp=14459df34a74b1f0087e5260357017f8b33a2cfd;p=platform%2Fupstream%2Fbash.git Bash-4.2 patch 34 --- diff --git a/parse.y b/parse.y index 889e77d..dc78e7e 100644 --- a/parse.y +++ b/parse.y @@ -4900,6 +4900,9 @@ history_delimiting_chars (line) return (current_command_line_count == 2 ? "\n" : ""); } + if (parser_state & PST_COMPASSIGN) + return (" "); + /* First, handle some special cases. */ /*(*/ /* If we just read `()', assume it's a function definition, and don't diff --git a/patchlevel.h b/patchlevel.h index d66658f..a8cac10 100644 --- a/patchlevel.h +++ b/patchlevel.h @@ -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 33 +#define PATCHLEVEL 34 #endif /* _PATCHLEVEL_H_ */