2009-10-23 Kai Tietz <kai.tietz@onevision.com>

* deffilep.y (def_lex): Allow '<' and '>' characters in identifier
	strings.
This commit is contained in:
Kai Tietz 2009-10-23 11:33:44 +00:00
parent 406dba1369
commit 424908eba6
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-10-23 Kai Tietz <kai.tietz@onevision.com>
* deffilep.y (def_lex): Allow '<' and '>' characters in identifier
strings.
2009-10-23 Ryan Mansfield <rmansfield@qnx.com>
PR ld/10489

View File

@ -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 ();