From 3a80743ccf57259ada074c1861592fe552c96459 Mon Sep 17 00:00:00 2001 From: naruse Date: Sat, 5 Jun 2010 11:32:05 +0000 Subject: * re.c (rb_reg_expr_str): ASCII incompatible strings must always escape or converted. * re.c (rb_reg_expr_str): use rb_str_buf_cat_escaped_char when resenc is given: for Regexp#inspect or error message. * re.c (rb_reg_desc): add 'n' for ENCODING_NONE. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- re.c | 73 ++++++++++++++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 52 insertions(+), 21 deletions(-) (limited to 're.c') diff --git a/re.c b/re.c index 909e44daa3..db440d156a 100644 --- a/re.c +++ b/re.c @@ -314,32 +314,47 @@ rb_reg_check(VALUE re) } } +int rb_str_buf_cat_escaped_char(VALUE result, unsigned int c, int unicode_p); + static void -rb_reg_expr_str(VALUE str, const char *s, long len) +rb_reg_expr_str(VALUE str, const char *s, long len, + rb_encoding *enc, rb_encoding *resenc) { - rb_encoding *enc = rb_enc_get(str); const char *p, *pend; int need_escape = 0; int c, clen; p = s; pend = p + len; - while (pptr->options)) rb_str_buf_cat2(str, opts); + if (RBASIC(re)->flags & REG_ENCODING_NONE) + rb_str_buf_cat2(str, "n"); } OBJ_INFECT(str, re); return str; @@ -476,6 +504,7 @@ rb_reg_to_s(VALUE re) const UChar* ptr; VALUE str = rb_str_buf_new2("(?"); char optbuf[5]; + rb_encoding *enc = rb_enc_get(re); rb_reg_check(re); @@ -524,7 +553,7 @@ rb_reg_to_s(VALUE re) ++ptr; len -= 2; err = onig_new(&rp, ptr, ptr + len, ONIG_OPTION_DEFAULT, - rb_enc_get(re), OnigDefaultSyntax, NULL); + enc, OnigDefaultSyntax, NULL); onig_free(rp); } if (err) { @@ -543,7 +572,7 @@ rb_reg_to_s(VALUE re) } rb_str_buf_cat2(str, ":"); - rb_reg_expr_str(str, (char*)ptr, len); + rb_reg_expr_str(str, (char*)ptr, len, enc, NULL); rb_str_buf_cat2(str, ")"); rb_enc_copy(str, re); @@ -564,10 +593,12 @@ rb_enc_reg_error_desc(const char *s, long len, rb_encoding *enc, int options, co { char opts[6]; VALUE desc = rb_str_buf_new2(err); + rb_encoding *resenc = rb_default_internal_encoding(); + if (resenc == NULL) resenc = rb_default_external_encoding(); rb_enc_associate(desc, enc); rb_str_buf_cat2(desc, ": /"); - rb_reg_expr_str(desc, s, len); + rb_reg_expr_str(desc, s, len, enc, resenc); opts[0] = '/'; option_to_str(opts + 1, options); rb_str_buf_cat2(desc, opts); -- cgit v1.2.3