* deffilep.y (def_lex): Accept '.' as valid non-lead char.
This commit is contained in:
parent
b116b4f32a
commit
9be2edc5c4
2 changed files with 5 additions and 1 deletions
|
@ -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 ();
|
||||
|
|
Loading…
Reference in a new issue