diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2007-03-15 14:58:05 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2007-03-15 14:58:05 +0000 |
commit | 4061927e10148290f821a3bce1b20870bf01534a (patch) | |
tree | 90ada99fa34cb8aa61f36ccd10309a0676eb96de /gas/app.c | |
parent | 0b1cf022c8646c5065eed31d3b2889d7a679f88c (diff) | |
download | binutils-gdb-4061927e10148290f821a3bce1b20870bf01534a.tar.gz |
2007-03-15 Alexandre Oliva <aoliva@redhat.com>
PR gas/4184
* app.c (do_scrub_chars): PUT after setting states.
Diffstat (limited to 'gas/app.c')
-rw-r--r-- | gas/app.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gas/app.c b/gas/app.c index dc08f835235..d2308596dc4 100644 --- a/gas/app.c +++ b/gas/app.c @@ -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 { |