From: Gustav HÃ¥llberg Date: Wed, 12 Aug 2009 12:00:00 +0000 (+0200) Subject: stgit.el: Bugfix of stgit-move-patches to top of stack X-Git-Tag: v0.15-rc2~11^2~10 X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/commitdiff_plain/980d8cfbb89c12087b3818d827ef991b4f3735e8 stgit.el: Bugfix of stgit-move-patches to top of stack Signed-off-by: Gustav HÃ¥llberg --- diff --git a/contrib/stgit.el b/contrib/stgit.el index 6cb0f1e..0b8cb25 100644 --- a/contrib/stgit.el +++ b/contrib/stgit.el @@ -1489,7 +1489,7 @@ the work tree and index." This is either the patch at point, or one of :top and :bottom, if the point is after or before the applied patches." - (let ((patchsym (stgit-patch-name-at-point))) + (let ((patchsym (stgit-patch-name-at-point nil t))) (cond (patchsym patchsym) ((save-excursion (re-search-backward "^>" nil t)) :top) (t :bottom))))