summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-05 04:04:26 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-05 04:04:26 +0000
commit4be0eb95cf92f40d68918b8f7f50e7367bff4aec (patch)
tree7c01378b21d5f680697c0fcc93612ae85d119009
parent8702c4d0d73a050e0d2181e16bf1e0688d6322f0 (diff)
* ruby.c (proc_options): no need for intermediate object.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14891 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--ruby.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1b4c6d37c9..6867eab7ce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Jan 5 13:04:24 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * ruby.c (proc_options): no need for intermediate object.
+
Sat Jan 5 11:48:19 2008 Tanaka Akira <akr@fsij.org>
* encoding.c (Init_Encoding): alias csWindows31J to Windows-31J.
diff --git a/ruby.c b/ruby.c
index 0fabd217da..3dae60226d 100644
--- a/ruby.c
+++ b/ruby.c
@@ -694,7 +694,7 @@ proc_options(int argc, char **argv, struct cmdline_options *opt)
case 'F':
if (*++s) {
- rb_fs = rb_reg_new_str(rb_str_new2(s), 0);
+ rb_fs = rb_reg_new(s, strlen(s), 0);
}
break;