From 6aaf5c5ca0f2322ba1d9001bdd1b9db649cb5419 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 24 Feb 2013 02:59:17 +0000 Subject: [PATCH] * .gdbinit (rp): fix argument order. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39448 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- .gdbinit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gdbinit b/.gdbinit index f254013e62..5e949ab2eb 100644 --- a/.gdbinit +++ b/.gdbinit @@ -124,7 +124,7 @@ define rp print (struct RObject *)($arg0) else if ($flags & RUBY_T_MASK) == RUBY_T_CLASS - printf "%sT_CLASS%s%s: ", ($flags & RUBY_FL_SINGLETON) ? "*" : "", $color_type, $color_end + printf "%sT_CLASS%s%s: ", $color_type, ($flags & RUBY_FL_SINGLETON) ? "*" : "", $color_end rp_class $arg0 else if ($flags & RUBY_T_MASK) == RUBY_T_ICLASS