2007-03-15 Alexandre Oliva <aoliva@redhat.com>

PR gas/4184
	* app.c (do_scrub_chars): PUT after setting states.
This commit is contained in:
H.J. Lu 2007-03-15 14:58:05 +00:00
parent 0b1cf022c8
commit 4061927e10
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2007-03-15 Alexandre Oliva <aoliva@redhat.com>
PR gas/4184
* app.c (do_scrub_chars): PUT after setting states.
2007-03-15 H.J. Lu <hongjiu.lu@intel.com>
* Makefile.am: Run "make dep-am".

View File

@ -510,11 +510,10 @@ do_scrub_chars (int (*get) (char *, int), char *tostart, int tolen)
ch = GET ();
if (ch == '"')
{
PUT (' ');
PUT (ch);
quotechar = ch;
state = 5;
old_state = 3;
PUT (ch);
}
else
{