aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
Diffstat (limited to 'ld')
-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 983ca14..e09a68e 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 b44a6b3..08c5a91 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 ();