From: Karl Hasselström <kha@xxxxxxxxxxx> The three operations we should have are: * Pop the topmost applied patch, no matter where point is. * Push the first unapplied patch, no matter where point is. * Push/pop the patch at point, depending on whether it's currently applied. This patch makes "<" and ">" do the first two operations. The third is coming in a later patch. Signed-off-by: Karl Hasselström <kha@xxxxxxxxxxx> Signed-off-by: David Kågedal <davidk@xxxxxxxxxxxxxx> --- contrib/stgit.el | 22 ++++++++-------------- 1 files changed, 8 insertions(+), 14 deletions(-) diff --git a/contrib/stgit.el b/contrib/stgit.el index cce0c0e..17b5d6b 100644 --- a/contrib/stgit.el +++ b/contrib/stgit.el @@ -81,7 +81,7 @@ Argument DIR is the repository path." (define-key stgit-mode-map "g" 'stgit-refresh) (define-key stgit-mode-map "r" 'stgit-rename) (define-key stgit-mode-map ">" 'stgit-push-next) - (define-key stgit-mode-map "<" 'stgit-pop) + (define-key stgit-mode-map "<" 'stgit-pop-next) (define-key stgit-mode-map "=" 'stgit-show)) (defun stgit-mode () @@ -127,22 +127,16 @@ Commands: (stgit-goto-patch name))) (defun stgit-push-next () - "Push the patch on the line after pos" + "Push the first unapplied patch" (interactive) - (forward-line 1) - (let ((patch (stgit-patch-at-point))) - (stgit-capture-output nil - (stgit-run "push" patch)) - (stgit-refresh))) + (stgit-capture-output nil (stgit-run "push")) + (stgit-refresh)) -(defun stgit-pop () - "Pop the patch on the current line" +(defun stgit-pop-next () + "Pop the topmost applied patch" (interactive) - (let ((patch (stgit-patch-at-point))) - (stgit-capture-output nil - (stgit-run "pop" patch)) - (stgit-refresh) - (previous-line))) + (stgit-capture-output nil (stgit-run "pop")) + (stgit-refresh)) (defun stgit-show () "Show the patch on the current line" - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html