aboutsummaryrefslogtreecommitdiffstats
path: root/.gdbinit
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-27 02:18:07 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-27 02:18:07 +0000
commit1ccdddb7e4171bb773e924e5a4b02c9401ba835e (patch)
treed62e866248dbc77f76b548e581f56de82db44ff8 /.gdbinit
parent59d48e55712b33c0e2a3ebb913db9d09a618aca3 (diff)
downloadruby-1ccdddb7e4171bb773e924e5a4b02c9401ba835e.tar.gz
.gdbinit: insert a colon
* .gdbinit (rp): insert a colon between type "SYMBOL" and ID value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to '.gdbinit')
-rw-r--r--.gdbinit2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gdbinit b/.gdbinit
index 6fe7b32cfd..327a043963 100644
--- a/.gdbinit
+++ b/.gdbinit
@@ -27,7 +27,7 @@ define rp
else
if ((VALUE)($arg0) & ~(~(VALUE)0<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG
set $id = (($arg0) >> RUBY_SPECIAL_SHIFT)
- printf "%sSYMBOL%s", $color_type, $color_end
+ printf "%sSYMBOL%s: ", $color_type, $color_end
rp_id $id
else
if ($arg0) == RUBY_Qfalse