Remove nextc and nextj direct aliases; they actually aren't necessary

pull/99/head
Zach Riggle 10 years ago
parent e650648f4f
commit de79d6ca12

@ -18,12 +18,6 @@ def nextjmp(*args):
if pwndbg.next.break_next_branch():
pwndbg.commands.context.context()
@pwndbg.commands.Command
@pwndbg.commands.OnlyWhenRunning
def nextj(*args):
"""Breaks at the next jump instruction"""
nextjmp(*args)
@pwndbg.commands.Command
@pwndbg.commands.OnlyWhenRunning
def nextjump(*args):
@ -37,13 +31,6 @@ def nextcall(*args):
if pwndbg.next.break_next_call():
pwndbg.commands.context.context()
@pwndbg.commands.Command
@pwndbg.commands.OnlyWhenRunning
def nextc(*args):
"""Breaks at the next call instruction"""
nextcall(*args)
@pwndbg.commands.Command
@pwndbg.commands.OnlyWhenRunning
def stepover(*args):

Loading…
Cancel
Save