mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ruby.c (proc_options): -F set compiled regular expression to $;.
[ruby-talk:77381] * string.c (Init_String): no setter type check for $; git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4230 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c9b177327d
commit
029e9449ce
3 changed files with 10 additions and 3 deletions
|
@ -3,6 +3,13 @@ Wed Jul 30 15:54:04 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||||
* ext/openssl/ossl_ssl.c (ossl_sslctx_initialize): should initialize
|
* ext/openssl/ossl_ssl.c (ossl_sslctx_initialize): should initialize
|
||||||
instance variables. [ruby-talk:77362]
|
instance variables. [ruby-talk:77362]
|
||||||
|
|
||||||
|
Wed Jul 30 15:39:54 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
* ruby.c (proc_options): -F set compiled regular expression to $;.
|
||||||
|
[ruby-talk:77381]
|
||||||
|
|
||||||
|
* string.c (Init_String): no setter type check for $;
|
||||||
|
|
||||||
Wed Jul 30 15:10:02 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
Wed Jul 30 15:10:02 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||||
|
|
||||||
* error.c (rb_raise): snprintf() termination moved to
|
* error.c (rb_raise): snprintf() termination moved to
|
||||||
|
|
2
ruby.c
2
ruby.c
|
@ -589,7 +589,7 @@ proc_options(argc, argv)
|
||||||
|
|
||||||
case 'F':
|
case 'F':
|
||||||
if (*++s) {
|
if (*++s) {
|
||||||
rb_fs = rb_str_new2(s);
|
rb_fs = rb_reg_new(s, strlen(s), 0);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
4
string.c
4
string.c
|
@ -3402,6 +3402,6 @@ Init_String()
|
||||||
id_to_s = rb_intern("to_s");
|
id_to_s = rb_intern("to_s");
|
||||||
|
|
||||||
rb_fs = Qnil;
|
rb_fs = Qnil;
|
||||||
rb_define_hooked_variable("$;", &rb_fs, 0, rb_str_setter);
|
rb_define_variable("$;", &rb_fs);
|
||||||
rb_define_hooked_variable("$-F", &rb_fs, 0, rb_str_setter);
|
rb_define_variable("$-F", &rb_fs);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue