diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-23 02:38:02 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-23 02:38:02 +0000 |
commit | 39a86bf60a2bf8f69e4385e9a593c4ca7749a1c5 (patch) | |
tree | d74c6dbefd17ecf12d31829b2d2fb62ac8e392ba /.gdbinit | |
parent | 87c828e39eb49269ca367f1adaec9d07bfed8f4a (diff) | |
download | ruby-39a86bf60a2bf8f69e4385e9a593c4ca7749a1c5.tar.gz |
* .gdbinit (rp): T_VALUES is no longer defined.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16550 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to '.gdbinit')
-rw-r--r-- | .gdbinit | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -177,10 +177,6 @@ define rp printf "T_SYMBOL: " print (struct RBasic *)$arg0 else - if ($flags & RUBY_T_MASK) == RUBY_T_VALUES - printf "T_VALUES: " - print (struct RValues *)$arg0 - else if ($flags & RUBY_T_MASK) == RUBY_T_UNDEF printf "T_UNDEF: " print (struct RBasic *)$arg0 @@ -224,7 +220,6 @@ define rp end end end - end end document rp Print a Ruby's VALUE. |