mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* .gdbinit (rp): REGEXP handling fixed.
* string.c (rb_str_rindex_m): need not to call rb_enc_check on regexp. * re.c (unescape_escaped_nonascii): try ASCII-8BIT encoding for broken strings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19812 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4709e330cf
commit
1e8bbf3154
4 changed files with 25 additions and 5 deletions
10
.gdbinit
10
.gdbinit
|
@ -86,11 +86,17 @@ define rp
|
|||
print (struct RString *)$arg0
|
||||
else
|
||||
if ($flags & RUBY_T_MASK) == RUBY_T_REGEXP
|
||||
set $regsrc = ((struct RRegexp*)$arg0)->src
|
||||
set $rsflags = ((struct RBasic*)$regsrc)->flags
|
||||
printf "T_REGEXP: "
|
||||
set print address off
|
||||
output ((struct RRegexp*)$arg0)->str
|
||||
output (char *)(($rsflags & RUBY_FL_USER1) ? \
|
||||
((struct RString*)$regsrc)->as.heap.ptr : \
|
||||
((struct RString*)$regsrc)->as.ary)
|
||||
set print address on
|
||||
printf " len:%ld ", ((struct RRegexp*)$arg0)->len
|
||||
printf " len:%ld ", ($rsflags & RUBY_FL_USER1) ? \
|
||||
((struct RString*)$regsrc)->as.heap.len : \
|
||||
(($rsflags & (RUBY_FL_USER2|RUBY_FL_USER3|RUBY_FL_USER4|RUBY_FL_USER5|RUBY_FL_USER6)) >> RUBY_FL_USHIFT+2)
|
||||
if $flags & RUBY_FL_USER6
|
||||
printf "(none) "
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue