mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 02:24:17 +08:00
2001-01-24 Kazu Hirata <kazu@hxi.com>
* chew.c: Do not output a trailing whitespace.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2001-01-24 Kazu Hirata <kazu@hxi.com>
|
||||||
|
|
||||||
|
* chew.c: Do not output a trailing whitespace.
|
||||||
|
|
||||||
2000-11-06 Nick Clifton <nickc@redhat.com>
|
2000-11-06 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* bfd.texinfo: Add GNU Free Documentation License.
|
* bfd.texinfo: Add GNU Free Documentation License.
|
||||||
|
@ -515,6 +515,10 @@ paramstuff (void)
|
|||||||
|
|
||||||
for (idx = 0; idx < fname; idx++) /* Output type */
|
for (idx = 0; idx < fname; idx++) /* Output type */
|
||||||
{
|
{
|
||||||
|
/* Omit a trailing whitespace. */
|
||||||
|
if (idx + 1 == fname && isspace ((unsigned char) at (tos, idx)))
|
||||||
|
break;
|
||||||
|
|
||||||
catchar (&out, at (tos, idx));
|
catchar (&out, at (tos, idx));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user