X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/210a2a52e4ba8ea095bcad3917a1b7c6d9413b92..5115dea02ba6a90485f2a0d7b77e90a01f0d00a5:/contrib/stgit.el diff --git a/contrib/stgit.el b/contrib/stgit.el index cfc71dd..65fe68a 100644 --- a/contrib/stgit.el +++ b/contrib/stgit.el @@ -435,11 +435,8 @@ Cf. `stgit-file-type-change-string'." 'file-data file)))) (defun stgit-insert-patch-files (patch) - "Expand (show modification of) the patch with name PATCHSYM (a -symbol) after the line at point. -`stgit-expand-find-copies-harder' controls how hard to try to -find copied files." - (insert "\n") + "Expand (show modification of) the patch PATCH after the line +at point." (let* ((patchsym (stgit-patch-name patch)) (end (progn (insert "#") (prog1 (point-marker) (forward-char -1)))) (args (list "-z" (if stgit-expand-find-copies-harder @@ -447,8 +444,6 @@ find copied files." "-C"))) (ewoc (ewoc-create #'stgit-file-pp nil nil t))) (setf (stgit-patch-files-ewoc patch) ewoc) - (when (eq patchsym :work) - (setq stgit-work-ewoc ewoc)) (with-temp-buffer (apply 'stgit-run-git (cond ((eq patchsym :work) @@ -881,13 +876,13 @@ If PATCHSYM is a keyword, returns PATCHSYM unmodified." (goto-char (point-min)) (diff-mode)))) -(defun stgit-move-change-to-index (file status) +(defun stgit-move-change-to-index (file) "Copies the workspace state of FILE to index, using git add or git rm" - (let ((op (if (file-exists-p file) "add" "rm"))) + (let ((op (if (file-exists-p file) '("add") '("rm" "-q")))) (stgit-capture-output "*git output*" - (stgit-run-git op "--" file)))) + (apply 'stgit-run-git (append op '("--") (list file)))))) -(defun stgit-remove-change-from-index (file status) +(defun stgit-remove-change-from-index (file) "Unstages the change in FILE from the index" (stgit-capture-output "*git output*" (stgit-run-git "reset" "-q" "--" file))) @@ -900,11 +895,9 @@ If PATCHSYM is a keyword, returns PATCHSYM unmodified." (error "No file on the current line")) (let ((patch-name (stgit-patch-name-at-point))) (cond ((eq patch-name :work) - (stgit-move-change-to-index (stgit-file-file patched-file) - (stgit-file-status patched-file))) + (stgit-move-change-to-index (stgit-file-file patched-file))) ((eq patch-name :index) - (stgit-remove-change-from-index (stgit-file-file patched-file) - (stgit-file-status patched-file))) + (stgit-remove-change-from-index (stgit-file-file patched-file))) (t (error "Can only move files in the working tree to index"))))) (stgit-refresh-worktree)