* deffilep.y (def_lex): Accept '.' as valid non-lead char.
authorDanny Smith <dannysmith@users.sourceforge.net>
Wed, 12 Mar 2003 08:38:16 +0000 (08:38 +0000)
committerDanny Smith <dannysmith@users.sourceforge.net>
Wed, 12 Mar 2003 08:38:16 +0000 (08:38 +0000)
ld/ChangeLog
ld/deffilep.y

index 983ca1466871e72d8c37132aad51355015ce022a..e09a68e15dfc83fd90b2a34ed616fd71e60a3726 100644 (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
index b44a6b36eb5f529ee175079cd54a1706ef153042..08c5a9142eb9db234d466172312df4fffe23121d 100644 (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 ();
This page took 0.030799 seconds and 4 git commands to generate.