From: Yann Dirson Date: Fri, 24 Nov 2006 22:57:54 +0000 (+0000) Subject: Optimize stg goto in the pop case. X-Git-Tag: v0.14.3~409 X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/commitdiff_plain/2cf7e94e933bf3e8091622d7d6730e145cc9bf64 Optimize stg goto in the pop case. Signed-off-by: Yann Dirson --- diff --git a/stgit/commands/goto.py b/stgit/commands/goto.py index 1b62d1c..e129b8d 100644 --- a/stgit/commands/goto.py +++ b/stgit/commands/goto.py @@ -45,11 +45,11 @@ def func(parser, options, args): check_head_top_equal() applied = crt_series.get_applied() - applied.reverse() unapplied = crt_series.get_unapplied() patch = args[0] if patch in applied: + applied.reverse() patches = applied[:applied.index(patch)] pop_patches(patches) elif patch in unapplied: