From a384ea810d388dfb685a3694e851457bb5e668dd Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Tue, 24 Sep 2024 09:38:43 +0100 Subject: [PATCH v3] New command diff-discard-hunk * lisp/vc/diff-mode.el (diff-discard-hunk): New command (bug#73407). (diff-apply-buffer): New optional BEG and END arguments. Return nil if buffers were saved, or the number of failed applications. (diff-mode-map): Bind diff-discard-hunk to C-c C-k. (diff-mode-menu): New entry "Discard hunk". * doc/emacs/files.texi (Diff Mode): * etc/NEWS: Document the new command. --- doc/emacs/files.texi | 10 ++++++++++ etc/NEWS | 5 +++++ lisp/vc/diff-mode.el | 40 +++++++++++++++++++++++++++++++++++----- 3 files changed, 50 insertions(+), 5 deletions(-) diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi index 709cb0910e6..78d90a914aa 100644 --- a/doc/emacs/files.texi +++ b/doc/emacs/files.texi @@ -1682,6 +1682,16 @@ Diff Mode version. If @code{diff-jump-to-old-file} is non-@code{nil}, apply the hunk to the ``old'' version of the file instead. +@findex diff-discard-hunk +@item C-c C-k +Reverse-apply this hunk to the target file, and then kill it +(@code{diff-discard-hunk}). Save the buffer visiting the target file. + +This command is useful in buffers generated by @w{@kbd{C-x v =}} and +@w{@kbd{C-x v D}} (@pxref{Old Revisions}). You can use this command to +remove hunks you never intend to commit, such as temporary debug prints, +and the like. + @findex diff-apply-buffer @item C-c @key{RET} a Apply all the hunks in the buffer (@code{diff-apply-buffer}). If the diff --git a/etc/NEWS b/etc/NEWS index c1a0524c8ba..3edd827d15c 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -341,6 +341,11 @@ according to diffs in the current buffer, but without applying the diffs to the original text. If the selected range extends a hunk, the command attempts to look up and copy the text in-between the hunks. ++++ +*** New command 'diff-discard-hunk' bound to C-c C-k. +This command reverse-applies the hunk at point, and then kills it. +This is useful in buffers generated C-x v = and C-x v D. + ** php-ts-mode --- diff --git a/lisp/vc/diff-mode.el b/lisp/vc/diff-mode.el index 4810b9ce01c..a48ba8e717a 100644 --- a/lisp/vc/diff-mode.el +++ b/lisp/vc/diff-mode.el @@ -218,6 +218,7 @@ diff-mode-map "C-x 4 A" #'diff-add-change-log-entries-other-window ;; Misc operations. "C-c C-a" #'diff-apply-hunk + "C-c C-k" #'diff-discard-hunk "C-c C-m a" #'diff-apply-buffer "C-c C-e" #'diff-ediff-patch "C-c C-n" #'diff-restrict-view @@ -242,6 +243,8 @@ diff-mode-menu :help "Apply the current hunk to the source file and go to the next"] ["Test applying hunk" diff-test-hunk :help "See whether it's possible to apply the current hunk"] + ["Discard hunk" diff-discard-hunk + :help "Reverse-apply and then kill the current hunk."] ["Apply all hunks" diff-apply-buffer :help "Apply all hunks in the current diff buffer"] ["Apply diff with Ediff" diff-ediff-patch @@ -2050,15 +2053,39 @@ diff-kill-applied-hunks (diff-hunk-kill) (diff-hunk-next))))) -(defun diff-apply-buffer () +(defun diff-discard-hunk () + "Reverse-apply and then kill the hunk at point. Save changed buffer. + +This command is useful in buffers generated by \\[vc-diff] and \\[vc-root-diff]. +You can use `diff-hunk-kill' to remove hunks you intend to commit later. +You can use this command to remove hunks you never intend to commit, +such as temporary debug prints, and the like." + (interactive) + (when (yes-or-no-p "Discard this hunk?") + (cl-destructuring-bind (beg end) (diff-bounds-of-hunk) + (diff-reverse-direction beg end) + (condition-case ret + (diff-apply-buffer beg end) + ;; Reversing the hunk is an implementation detail, so ensure the + ;; user never sees it. + (error (diff-reverse-direction beg end) + (signal (car ret) (cdr ret))) + (:success (if ret + (diff-reverse-direction beg end) + (diff-hunk-kill))))))) + +(defun diff-apply-buffer (&optional beg end) "Apply the diff in the entire diff buffer. -When applying all hunks was successful, then save the changed buffers." +When applying all hunks was successful, then save the changed buffers. +When called from Lisp with optional arguments, restrict the application +to hunks lying between BEG and END. Returns nil if buffers were saved, +or the number of failed applications." (interactive) (let ((buffer-edits nil) (failures 0) (diff-refine nil)) (save-excursion - (goto-char (point-min)) + (goto-char (or beg (point-min))) (diff-beginning-of-hunk t) (while (pcase-let ((`(,buf ,line-offset ,pos ,_src ,dst ,switched) (diff-find-source-location nil nil))) @@ -2068,6 +2095,7 @@ diff-apply-buffer (t (setq failures (1+ failures)))) (and (not (eq (prog1 (point) (ignore-errors (diff-hunk-next))) (point))) + (or (not end) (< (point) end)) (looking-at-p diff-hunk-header-re))))) (cond ((zerop failures) (dolist (buf-edits (reverse buffer-edits)) @@ -2080,9 +2108,11 @@ diff-apply-buffer (delete-region (car pos) (cdr pos)) (insert (car dst)))) (save-buffer))) - (message "Saved %d buffers" (length buffer-edits))) + (message "Saved %d buffers" (length buffer-edits)) + nil) (t - (message "%d hunks failed; no buffers changed" failures))))) + (message "%d hunks failed; no buffers changed" failures) + failures)))) (defalias 'diff-mouse-goto-source #'diff-goto-source) -- 2.39.5