From 0ece2407d2e1dec907d59d458c70ee6c5d1c6602 Mon Sep 17 00:00:00 2001 From: uema2 Date: Sat, 24 May 2003 09:17:35 +0000 Subject: * wince/Makefile.sub: add eMbedded Visual C++ 4.0 support. * wince/resource.rb: ditto. * wince/setup.mak: ditto. * wince/configure.bat: ditto. * wince/mkexports.rb: delete japanese comments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3862 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- wince/mkexports.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'wince/mkexports.rb') diff --git a/wince/mkexports.rb b/wince/mkexports.rb index 4e06eff625..2508920c67 100644 --- a/wince/mkexports.rb +++ b/wince/mkexports.rb @@ -7,13 +7,13 @@ IO.foreach("|dumpbin -symbols " + objs.join(' ')) do |l| next if /^[0-9A-F]+ 0+ UNDEF / =~ l next unless l.sub!(/.*\sExternal\s+\|\s+/, '') if ARGV[1]=="sh3" - if l.sub!(/^_/, '') # _ で始まるならtrue - next if /@.*@/ =~ l || /@[0-9a-f]{16}$/ =~ l # かつ、@ とか混じったら next - elsif !l.sub!(/^(\S+) \([^@?\`\']*\)$/, '\1') # _ ではじまっていなくて、@ とか混じっていたらnext + if l.sub!(/^_/, '') + next if /@.*@/ =~ l || /@[0-9a-f]{16}$/ =~ l + elsif !l.sub!(/^(\S+) \([^@?\`\']*\)$/, '\1') next end else - next if /@.*@/ =~ l || /@[0-9a-f]{16}$/ =~ l # かつ、@ とか混じったら next + next if /@.*@/ =~ l || /@[0-9a-f]{16}$/ =~ l end SYM[l.strip] = true end -- cgit v1.2.3