mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 05:52:21 +08:00
2009-10-23 Kai Tietz <kai.tietz@onevision.com>
* deffilep.y (def_lex): Allow '<' and '>' characters in identifier strings.
This commit is contained in:
@ -1059,7 +1059,7 @@ def_lex (void)
|
||||
#endif
|
||||
}
|
||||
|
||||
while (c != EOF && (ISALNUM (c) || strchr ("$:-_?/@", c)))
|
||||
while (c != EOF && (ISALNUM (c) || strchr ("$:-_?/@<>", c)))
|
||||
{
|
||||
put_buf (c);
|
||||
c = def_getc ();
|
||||
|
Reference in New Issue
Block a user