[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: master 59df0a7bd9: Add a VC command to prepare patches
From: |
Philip Kaludercic |
Subject: |
Re: master 59df0a7bd9: Add a VC command to prepare patches |
Date: |
Mon, 10 Oct 2022 11:22:33 +0000 |
Robert Pluim <rpluim@gmail.com> writes:
>>>>>> On Sat, 8 Oct 2022 05:52:12 -0400 (EDT), Philip Kaludercic
>>>>>> <philipk@posteo.net> said:
> Philip> +;;;###autoload
> Philip> +(defun vc-prepare-patch (addressee subject revisions)
> Philip> + "Compose an Email sending patches for REVISIONS to ADDRESSEE.
> Philip> +If `vc-prepare-patches-separately' is non-nil, SUBJECT will be
> used
> ^^^
>
> Beware the dangers of last-minute changes in default values :) I fixed
> it.
>
> One surprising thing that isnĘžt called out explicitly is that if you
> do `vc-prepare-patch' for multiple revisions, it prepares the first
> patch, waits for you to do something with it (like send it), and then
> moves on to the next. I guess I was expecting it to prepare *all* of
> them (that way I could just save them all, and look in my drafts
> folder afterwards, and send them all at once). Maybe 'git
> format-patch' has spoiled me.
It would be possible to add either another option or a third value to
have all messages automatically send out.
> Robert