ruby-changes:27396
From: nobu <ko1@a...>
Date: Sun, 24 Feb 2013 11:59:31 +0900 (JST)
Subject: [ruby-changes:27396] nobu:r39448 (trunk): * .gdbinit (rp): fix argument order.
nobu 2013-02-24 11:59:17 +0900 (Sun, 24 Feb 2013) New Revision: 39448 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=39448 Log: * .gdbinit (rp): fix argument order. Modified files: trunk/.gdbinit Index: .gdbinit =================================================================== --- .gdbinit (revision 39447) +++ .gdbinit (revision 39448) @@ -124,7 +124,7 @@ define rp https://github.com/ruby/ruby/blob/trunk/.gdbinit#L124 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 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/