summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2003-03-12 08:38:16 +0000
committerDanny Smith <dannysmith@users.sourceforge.net>2003-03-12 08:38:16 +0000
commit25bd4391a9c744d9e02ebc95bc402d91288493a0 (patch)
tree0c1679701a3ed7f3bcc2a4915202e80cf0a82c75
parent29943a23b72b8924ffd9b6e8076a3b405f713a74 (diff)
downloadbinutils-redhat-25bd4391a9c744d9e02ebc95bc402d91288493a0.tar.gz
* deffilep.y (def_lex): Accept '.' as valid non-lead char.
-rw-r--r--ld/ChangeLog4
-rw-r--r--ld/deffilep.y2
2 files changed, 5 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 983ca14668..e09a68e15d 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -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
diff --git a/ld/deffilep.y b/ld/deffilep.y
index b44a6b36eb..08c5a9142e 100644
--- a/ld/deffilep.y
+++ b/ld/deffilep.y
@@ -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 ();