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

* re.c (Init_Regexp): define Regexp::FIXEDENCODING. [ruby-dev:38066]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-02-22 06:12:21 +00:00
parent bc59123dc0
commit af7d8584c5
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sun Feb 22 15:11:51 2009 Tanaka Akira <akr@fsij.org>
* re.c (Init_Regexp): define Regexp::FIXEDENCODING. [ruby-dev:38066]
Sun Feb 22 14:33:06 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> Sun Feb 22 14:33:06 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* string.c (tr_trans): should not be affected by the encoding of * string.c (tr_trans): should not be affected by the encoding of

1
re.c
View file

@ -3413,6 +3413,7 @@ Init_Regexp(void)
rb_define_const(rb_cRegexp, "IGNORECASE", INT2FIX(ONIG_OPTION_IGNORECASE)); rb_define_const(rb_cRegexp, "IGNORECASE", INT2FIX(ONIG_OPTION_IGNORECASE));
rb_define_const(rb_cRegexp, "EXTENDED", INT2FIX(ONIG_OPTION_EXTEND)); rb_define_const(rb_cRegexp, "EXTENDED", INT2FIX(ONIG_OPTION_EXTEND));
rb_define_const(rb_cRegexp, "MULTILINE", INT2FIX(ONIG_OPTION_MULTILINE)); rb_define_const(rb_cRegexp, "MULTILINE", INT2FIX(ONIG_OPTION_MULTILINE));
rb_define_const(rb_cRegexp, "FIXEDENCODING", INT2FIX(ARG_ENCODING_FIXED));
rb_global_variable(&reg_cache); rb_global_variable(&reg_cache);