From: Gustav Hållberg Date: Mon, 29 Dec 2008 14:32:58 +0000 (+0100) Subject: stgit.el: Bugfix stgit-unmark-down on the last patch X-Git-Tag: v0.15-rc1~66 X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/commitdiff_plain/1288eda2f520c4cb2b06de9d279d2d65704091f6 stgit.el: Bugfix stgit-unmark-down on the last patch Signed-off-by: Gustav Hållberg Signed-off-by: Karl Hasselström --- diff --git a/contrib/stgit.el b/contrib/stgit.el index e5259ad..f3b573d 100644 --- a/contrib/stgit.el +++ b/contrib/stgit.el @@ -600,8 +600,8 @@ the new file names instead of just one name." "Remove mark from the patch on the current line." (interactive) (stgit-remove-mark (stgit-patch-at-point t)) - (stgit-next-patch) - (stgit-reload)) + (stgit-reload) + (stgit-next-patch)) (defun stgit-rename (name) "Rename the patch under point to NAME."