* stabsread.c (define_symbol): Don't look for ',' as a LRS

indicator.
This commit is contained in:
Jeff Law 1998-03-19 04:47:59 +00:00
parent 0b9843e5ee
commit c298bd54ba
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Wed Mar 18 12:50:17 1998 Jeff Law (law@cygnus.com)
* stabsread.c (define_symbol): Don't look for ',' as a LRS
indicator.
Wed Mar 18 10:34:51 1998 Nick Clifton <nickc@cygnus.com>
* rdi-share/etherdrv.c: Set sys_errlist[] as char * not const char *.

View File

@ -2119,7 +2119,7 @@ define_symbol (valu, string, desc, type, objfile)
}
/* Is there more to parse? For example LRS/alias information? */
while (*p && (*p == ';' || *p == ','))
while (*p && *p == ';')
{
p++;
if (*p && *p == 'l')