Variable: vc-prepare-patches-separately
vc-prepare-patches-separately is a customizable variable defined in
vc.el.gz.
Value
t
Documentation
Whether vc-prepare-patch should generate a separate message for each patch.
If nil, vc-prepare-patch creates a single email message by attaching
all the patches to the body of that message. If non-nil, each patch
will be sent out in a separate message, and the messages will be
prepared sequentially.
This variable was added, or its default value changed, in Emacs 29.1.
Probably introduced at or before Emacs version 29.1.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc.el.gz
;; This is used in .dir-locals.el in the Emacs source tree.
;;;###autoload (put 'vc-prepare-patches-separately 'safe-local-variable 'booleanp)
(defcustom vc-prepare-patches-separately t
"Whether `vc-prepare-patch' should generate a separate message for each patch.
If nil, `vc-prepare-patch' creates a single email message by attaching
all the patches to the body of that message. If non-nil, each patch
will be sent out in a separate message, and the messages will be
prepared sequentially."
:type 'boolean
:safe #'booleanp
:version "29.1")