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

* re.c (rb_reg_desc): Regexp#inspect should be US-ASCII.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19384 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2008-09-16 13:16:12 +00:00
parent 507658bd54
commit 025bd642a7
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Tue Sep 16 21:48:55 2008 NARUSE, Yui <naruse@ruby-lang.org>
* re.c (rb_reg_desc): Regexp#inspect should be US-ASCII.
Tue Sep 16 21:33:22 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* string.c (rb_str_crypt): orthodox crypt() sees only first two bytes

2
re.c
View file

@ -381,7 +381,7 @@ rb_reg_desc(const char *s, long len, VALUE re)
{
VALUE str = rb_str_buf_new2("/");
rb_enc_copy(str, re);
rb_enc_associate(str, rb_usascii_encoding());
rb_reg_expr_str(str, s, len);
rb_str_buf_cat2(str, "/");
if (re) {