From Pierre Muller <muller@ics.u-strasbg.fr>:

* p-typeprint.c (pascal_type_print_method_args): Add braces around
isdigit after while keyword.
This commit is contained in:
Andrew Cagney 2000-07-10 05:09:51 +00:00
parent 3df7b4e2d2
commit 8ce17b9a34
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,9 @@
Mon Jul 10 15:02:35 2000 Andrew Cagney <cagney@b1.cygnus.com>
From 2000-07-05 Pierre Muller <muller@ics.u-strasbg.fr>:
* p-typeprint.c (pascal_type_print_method_args): Add braces around
isdigit after while keyword.
2000-07-06 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* TODO: Remove readline 4.1 import item.

View File

@ -170,11 +170,9 @@ pascal_type_print_method_args (physname, methodname, stream)
char *argname;
fputs_filtered (" (", stream);
/* we must demangle this */
while isdigit
(physname[0])
while (isdigit (physname[0]))
{
while isdigit
(physname[len])
while (isdigit (physname[len]))
{
len++;
}