Skip to content

Commit

Permalink
.gdbinit: initialize
Browse files Browse the repository at this point in the history
* .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
  • Loading branch information
nobu committed Dec 13, 2013
1 parent d35e7b5 commit 2e5422a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .gdbinit
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 2e5422a

Please sign in to comment.