mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
.gdbinit: initialize
* .gdbinit (ruby_gdb_init): initialize enums. * .gdbinit (rb_id2name): initialize debug info too. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44160 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d35e7b5be2
commit
2e5422a28c
1 changed files with 3 additions and 2 deletions
5
.gdbinit
5
.gdbinit
|
@ -14,14 +14,14 @@ define ruby_gdb_init
|
|||
if !$color_end
|
||||
set $color_end = "\033[m"
|
||||
end
|
||||
if ruby_dummy_gdb_enums.special_consts
|
||||
end
|
||||
end
|
||||
|
||||
# set prompt \033[36m(gdb)\033[m\040
|
||||
|
||||
define rp
|
||||
ruby_gdb_init
|
||||
if ruby_dummy_gdb_enums.special_consts
|
||||
end
|
||||
if (VALUE)($arg0) & RUBY_FIXNUM_FLAG
|
||||
printf "FIXNUM: %ld\n", (long)($arg0) >> 1
|
||||
else
|
||||
|
@ -745,6 +745,7 @@ define rb_numtable_entry
|
|||
end
|
||||
|
||||
define rb_id2name
|
||||
ruby_gdb_init
|
||||
printf "%sID%s: ", $color_type, $color_end
|
||||
rp_id $arg0
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue