summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--win32/mkexports.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0a84a4796a..e32e76c1ee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Jun 18 19:20:16 2002 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * win32/mkexports.rb: remove unnecessary exports. (ruby-dev:17418)
+
Tue Jun 18 12:50:17 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* parse.y (yylex): should pushback proper char after '<<'.
diff --git a/win32/mkexports.rb b/win32/mkexports.rb
index b20f414799..3859381935 100644
--- a/win32/mkexports.rb
+++ b/win32/mkexports.rb
@@ -8,7 +8,7 @@ IO.foreach("|dumpbin -symbols " + objs.join(' ')) do |l|
next unless l.sub!(/.*\sExternal\s+\|\s+/, '')
if l.sub!(/^_/, '')
next if /@.*@/ =~ l || /@[0-9a-f]{16}$/ =~ l
- elsif !l.sub!(/^(\S+) \([^@?]*\)$/, '\1')
+ elsif !l.sub!(/^(\S+) \([^@?\`\']*\)$/, '\1')
next
end
SYM[l.strip] = true