summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--win32/mkexports.rb4
2 files changed, 6 insertions, 2 deletions
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 <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'.
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