From de79d6ca1283fd60390ad32cc1d2ed45ec35ae9f Mon Sep 17 00:00:00 2001 From: Zach Riggle Date: Wed, 29 Jun 2016 14:45:19 +0200 Subject: [PATCH] Remove nextc and nextj direct aliases; they actually aren't necessary --- pwndbg/commands/next.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/pwndbg/commands/next.py b/pwndbg/commands/next.py index 4866828dd..fbd3bbbdd 100644 --- a/pwndbg/commands/next.py +++ b/pwndbg/commands/next.py @@ -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):