* ruby.c (proc_options): update according to the last API revert.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14885 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-01-04 16:47:41 +00:00
Родитель 8638ee26e7
Коммит b65d6208fe
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Sat Jan 5 01:46:29 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* ruby.c (proc_options): update according to the last API revert.
Sat Jan 5 01:30:30 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* include/ruby/intern.h, re.c (rb_reg_new): keep interface same as

2
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(rb_str_new2(s), 0);
rb_fs = rb_reg_new_str(rb_str_new2(s), 0);
}
break;