diff --git a/ChangeLog b/ChangeLog index 626567fed9..2d23a7c75b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Oct 30 18:21:51 2001 Usaku Nakamura + + * win32/mkexports.rb: follow the change of rb_io_puts(). + Tue Oct 30 14:04:04 2001 Yukihiro Matsumoto * string.c (rb_str_chomp_bang): do smart chomp if $/ == '\n'. diff --git a/win32/mkexports.rb b/win32/mkexports.rb index faf342b2cb..f8205d9dff 100644 --- a/win32/mkexports.rb +++ b/win32/mkexports.rb @@ -24,7 +24,7 @@ exports << "Description " + $description.dump if $description exports << "EXPORTS" << SYM.keys.sort if $output - open($output, 'w') {|f| f.puts exports} + open($output, 'w') {|f| f.puts exports.join("\n")} else - puts exports + puts exports.join("\n") end