Skip to content

Commit

Permalink
Remove duplicate command
Browse files Browse the repository at this point in the history
  • Loading branch information
paradoxxxzero committed Jul 5, 2013
1 parent bcf6aa9 commit 4dc24c8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ As of now the following special commands are supported during breakpoint:
* .j lineno : Jump to lineno (Must be at bottom frame and in the same function)
* .b arg : Set a session breakpoint, see below for what arg can be*
* .t arg : Set a temporary breakpoint, arg follow the same syntax as .b
* .d arg : Delete existing breakpoint
* .z arg : Delete existing breakpoint
* .l : List active breakpoints
* .f : Echo all typed commands in the current debugging session
* .d expression : Dump the result of expression in a table
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ As of now the following special commands are supported during breakpoint:
* .j lineno : Jump to lineno (Must be at bottom frame and in the same function)
* .b arg : Set a session breakpoint, see below for what arg can be*
* .t arg : Set a temporary breakpoint, arg follow the same syntax as .b
* .d arg : Delete existing breakpoint
* .z arg : Delete existing breakpoint
* .l : List active breakpoints
* .f : Echo all typed commands in the current debugging session
* .d expression : Dump the result of expression in a table
Expand Down
4 changes: 2 additions & 2 deletions wdb_server/static/coffees/wdb.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ execute = (snippet) ->
when 'j' then cmd 'Jump|' + data
when 'b' then toggle_break data
when 't' then toggle_break(data, true)
when 'd' then cmd 'Unbreak|' + data
when 'z' then cmd 'Unbreak|' + data
when 'l' then cmd 'Breakpoints'
when 'f' then print_hist session_cmd_hist[$('.selected .tracefile').text()]
when 'd' then cmd 'Dump|' + data
Expand Down Expand Up @@ -412,7 +412,7 @@ print_help = ->
.j lineno : Jump to lineno (Must be at bottom frame and in the same function)
.b arg : Set a session breakpoint, see below for what arg can be*
.t arg : Set a temporary breakpoint, arg follow the same syntax as .b
.d arg : Delete existing breakpoint
.z arg : Delete existing breakpoint
.l : List active breakpoints
.f : Echo all typed commands in the current debugging session
.d expression : Dump the result of expression in a table
Expand Down
4 changes: 2 additions & 2 deletions wdb_server/static/javascripts/wdb.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4dc24c8

Please sign in to comment.