summaryrefslogtreecommitdiff
path: root/gas/app.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2003-11-24 09:24:39 +0000
committerJakub Jelinek <jakub@redhat.com>2003-11-24 09:24:39 +0000
commit90bf68da4a5f1032ea04bfe5bfccb874ae897825 (patch)
tree06697ad3693dbc271509d3ccf40bf3913b1fd96b /gas/app.c
parent71b6545fa9a8ceec439b018bea811c2979476448 (diff)
downloadbinutils-redhat-90bf68da4a5f1032ea04bfe5bfccb874ae897825.tar.gz
* app.c (do_scrub_chars): Add PUT (ch) and ch = GET ()
when transitioning from states 14 or 15 to 0 or 1.
Diffstat (limited to 'gas/app.c')
-rw-r--r--gas/app.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gas/app.c b/gas/app.c
index 1524947dbd..1dbc49a8cd 100644
--- a/gas/app.c
+++ b/gas/app.c
@@ -684,7 +684,11 @@ do_scrub_chars (int (*get) (char *, int), char *tostart, int tolen)
else if (state == 14 || state == 15)
{
if (ch == ')')
- state -= 14;
+ {
+ state -= 14;
+ PUT (ch);
+ ch = GET ();
+ }
else
{
PUT (ch);