GNU bug report logs -
#66113
Apply the entire diff buffer
Previous Next
Reported by: Juri Linkov <juri <at> linkov.net>
Date: Wed, 20 Sep 2023 06:51:01 UTC
Severity: normal
Fixed in version 30.0.50
Done: Juri Linkov <juri <at> linkov.net>
Bug is archived. No further changes may be made.
Full log
Message #26 received at 66113 <at> debbugs.gnu.org (full text, mbox):
>> +(defun diff-apply-buffer ()
>> + "Apply the diff in the entire diff buffer.
>> +When applying all hunks was successful, then save the changed buffers."
>> + (interactive)
>> + (let ((buffer-edits nil)
>> + (failures 0)
>> + (diff-refine nil))
>> + (save-excursion
>> + (goto-char (point-min))
>> + (diff-beginning-of-hunk t)
>> + (while (pcase-let ((`(,buf ,line-offset ,pos ,_src ,dst ,switched)
>> + (diff-find-source-location nil nil)))
>> + (cond ((and line-offset (not switched))
>> + (push (cons pos dst)
>> + (alist-get buf buffer-edits)))
>> + (t (setq failures (1+ failures))))
>> + (not (or (eq (prog1 (point) (diff-hunk-next)) (point))
>> + (eobp))))))
>> + (cond ((zerop failures)
>> + (dolist (buf-edits (reverse buffer-edits))
>> + (with-current-buffer (car buf-edits)
>> + (dolist (edit (cdr buf-edits))
>> + (let ((pos (car edit))
>> + (dst (cdr edit))
>> + (inhibit-read-only t))
>> + (goto-char (car pos))
>> + (delete-region (car pos) (cdr pos))
>> + (insert (car dst))))
>> + (save-buffer)))
>> + (message "Saved %d buffers" (length buffer-edits)))
>> + (t
>> + (message "%d hunks failed; no buffers changed" failures)))))
>
> Sorry, was there supposed to be a call to diff-test-hunk here? Or I'm just
> not following the implementation.
diff-test-hunk was just an example of implementation. But the same way as
diff-apply-hunk is not used here, also only the logic of diff-test-hunk is used.
> I tried testing it out too. There is a patch where the third hunk doesn't
> apply (errors with "can't find the text to patch" in regular usage). This
> command ends with cryptic "No next hunk".
This is what I expected that diff-hunk-next might signal an error
that we should catch, but still couldn't find a patch that fails
with such error. So I will try to construct such a patch manually.
This bug report was last modified 1 year and 232 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.