* deffilep.y (def_lex): Accept '.' as valid non-lead char.

This commit is contained in:
Danny Smith 2003-03-12 08:38:16 +00:00
parent b116b4f32a
commit 9be2edc5c4
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

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