summaryrefslogtreecommitdiff
path: root/itches/emacs/tracker.org
diff options
context:
space:
mode:
Diffstat (limited to 'itches/emacs/tracker.org')
-rw-r--r--itches/emacs/tracker.org18
1 files changed, 18 insertions, 0 deletions
diff --git a/itches/emacs/tracker.org b/itches/emacs/tracker.org
index 9e4e46d..bc11734 100644
--- 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?