From: Nick Clifton Date: Thu, 26 Jan 2012 14:56:49 +0000 (+0000) Subject: PR gas/13624 X-Git-Tag: sid-snapshot-20120201~56 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f8819316e7a78afb1f71e461b1d85b624e129855;p=platform%2Fupstream%2Fbinutils.git PR gas/13624 * app.c (app_push): Set 'add_newlines' to zero after saving. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index d5de4c5..75aa7caa 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2012-01-26 Alexey Makhalov + + PR gas/13624 + * app.c (app_push): Set 'add_newlines' to zero after saving. + 2012-01-24 DJ Delorie * config/rl78-parse.y (NOT1): Add. diff --git a/gas/app.c b/gas/app.c index 3229336..e5a7687 100644 --- a/gas/app.c +++ b/gas/app.c @@ -275,6 +275,7 @@ app_push (void) state = 0; saved_input = NULL; + add_newlines = 0; return (char *) saved; }