diff options
author | Philip Kaludercic <philipk@posteo.net> | 2022-10-08 15:06:26 +0200 |
---|---|---|
committer | Philip Kaludercic <philipk@posteo.net> | 2022-10-08 15:43:11 +0200 |
commit | 84945e86be6b8dc8237983de901eb677bee3ae8b (patch) | |
tree | aefe76408a30539cc2adc72dcc8114f3b41ad7f2 /lisp/vc/vc.el | |
parent | aa350ba27599c7496f6edc37ef2470051bd9431b (diff) | |
download | emacs-84945e86be6b8dc8237983de901eb677bee3ae8b.tar.gz emacs-84945e86be6b8dc8237983de901eb677bee3ae8b.tar.bz2 emacs-84945e86be6b8dc8237983de901eb677bee3ae8b.zip |
; * lisp/vc/vc.el (vc-prepare-patches-separately): Fix docstring
Noticed by German Pacenza.
Diffstat (limited to 'lisp/vc/vc.el')
-rw-r--r-- | lisp/vc/vc.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index 1c64551d068..13cc4fbaa69 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -3293,10 +3293,11 @@ immediately after this one." (apply #'vc-user-edit-command (apply old args)))))) (defcustom vc-prepare-patches-separately t - "Non-nil means that `vc-prepare-patch' creates a single message. -A single message is created by attaching all patches to the body -of a single message. If nil, each patch will be sent out in a -separate message, which will be prepared sequentially." + "Configure the default behaviour of `vc-prepare-patch'. +If nil, a single message is created by attaching all patches to +the body of a single message. If non-nil, each patch will be +sent out in a separate message, which will be prepared +sequentially." :type 'boolean :safe #'booleanp :version "29.1") |