mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
.gdbinit: update for r47913
* .gdbinit (rp): update for r47913. RSymbol has id, so needs mask by scope mask. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48474 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
88212206f6
commit
9763fb84b5
1 changed files with 1 additions and 1 deletions
2
.gdbinit
2
.gdbinit
|
@ -212,7 +212,7 @@ define rp
|
|||
if ($flags & RUBY_T_MASK) == RUBY_T_SYMBOL
|
||||
printf "%sT_SYMBOL%s: ", $color_type, $color_end
|
||||
print (struct RSymbol *)($arg0)
|
||||
set $id_type = ((struct RSymbol *)($arg0))->type
|
||||
set $id_type = ((struct RSymbol *)($arg0))->id & RUBY_ID_SCOPE_MASK
|
||||
if $id_type == RUBY_ID_LOCAL
|
||||
printf "l"
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue