mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 12:22:20 +08:00
* deffilep.y (def_lex): Accept '.' as valid non-lead char.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2003-03-12 Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
* deffilep.y (def_lex): Accept '.' as valid non-lead char.
|
||||
|
||||
2003-03-07 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* configure.tgt: Add NATIVE_LIB_DIRS for cygwin target back after
|
||||
|
@ -1020,7 +1020,7 @@ def_lex ()
|
||||
#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