commit b454da43ca724512c36402e27b7575092c5ea364 parent 8fcd0060b14744e1fcb910fb0511a02da27d256f Author: Kévin Le Gouguec <kevin.legouguec@gmail.com> Date: Tue, 10 Mar 2020 23:35:13 +0100 Add to personal tracker Diffstat:
| M | itches/emacs/tracker.org | | | 18 | ++++++++++++++++++ |
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/itches/emacs/tracker.org b/itches/emacs/tracker.org @@ -11,6 +11,24 @@ ** bug *** hi-lock-mode does not automatically pick up new occurrences in fundamental and text modes See maybe bug#39597#41. +*** new debbugs.el command to apply git-format-patch attachments +To take some manual work off the maintainers: +- bug#39504#21 + #+begin_quote + I did it by hand since there were two patches in the email and the `M-m' + command in debbugs-gnu (which does all this applying and marking with + bug numbers automatically) doesn't like that. + #+end_quote +- bug#39504#24 + #+begin_src elisp + (defun debbugs-gnu-am () + (gnus-mime-pipe-part "git am") + (vc-checkin nil 'Git) + (vc-git-log-edit-toggle-amend) + ;; log-edit-done eventually errors out if vc-parent-buffer is not a + ;; file-visiting buffer. + (setq-local vc-parent-buffer (find-file-noselect "CONTRIBUTE"))) + #+end_src ** help *** compilation-in-progress Can someone make this snippet less ugly?