mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-19 13:53:29 +08:00
* app.c (do_scrub_chars): Add PUT (ch) and ch = GET ()
when transitioning from states 14 or 15 to 0 or 1.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2003-11-24 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* app.c (do_scrub_chars): Add PUT (ch) and ch = GET ()
|
||||||
|
when transitioning from states 14 or 15 to 0 or 1.
|
||||||
|
|
||||||
2003-11-23 Kazu Hirata <kazu@cs.umass.edu>
|
2003-11-23 Kazu Hirata <kazu@cs.umass.edu>
|
||||||
|
|
||||||
* hash.c: Convert to ISO-C.
|
* hash.c: Convert to ISO-C.
|
||||||
|
@ -684,7 +684,11 @@ do_scrub_chars (int (*get) (char *, int), char *tostart, int tolen)
|
|||||||
else if (state == 14 || state == 15)
|
else if (state == 14 || state == 15)
|
||||||
{
|
{
|
||||||
if (ch == ')')
|
if (ch == ')')
|
||||||
state -= 14;
|
{
|
||||||
|
state -= 14;
|
||||||
|
PUT (ch);
|
||||||
|
ch = GET ();
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
PUT (ch);
|
PUT (ch);
|
||||||
|
Reference in New Issue
Block a user