Variable: vc-default-patch-addressee
vc-default-patch-addressee is a customizable variable defined in
vc.el.gz.
Value
nil
Documentation
Default addressee for vc-prepare-patch.
If nil, no default will be used. This option may be set locally.
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-default-patch-addressee 'safe-local-variable 'stringp)
(defcustom vc-default-patch-addressee nil
"Default addressee for `vc-prepare-patch'.
If nil, no default will be used. This option may be set locally."
:type '(choice (const :tag "No default" nil)
(string :tag "Addressee"))
:safe #'stringp
:version "29.1")