diff options
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/app.c | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 1cc7e94a01..da20b24033 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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". @@ -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 { |