1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* win32/mkexports.rb: follow the change of rb_io_puts().

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1804 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2001-10-30 09:23:14 +00:00
parent 54d534f043
commit 8d321e3fd4
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Tue Oct 30 18:21:51 2001 Usaku Nakamura <usa@ruby-lang.org>
* win32/mkexports.rb: follow the change of rb_io_puts().
Tue Oct 30 14:04:04 2001 Yukihiro Matsumoto <matz@ruby-lang.org>
* string.c (rb_str_chomp_bang): do smart chomp if $/ == '\n'.

View file

@ -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