1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

Mention the vc diff switches in diff-switches

* lisp/vc/diff.el (diff-switches): Mention the vc diff switches in
the doc string (bug#4422).
This commit is contained in:
Lars Ingebrigtsen 2019-10-03 16:32:55 +02:00
parent dacafba03d
commit c164f74979

View File

@ -39,7 +39,12 @@
;;;###autoload
(defcustom diff-switches (purecopy "-u")
"A string or list of strings specifying switches to be passed to diff."
"A string or list of strings specifying switches to be passed to diff.
This variable is also used in the `vc-diff' command (and related
commands) if the backend-specific diff switch variable isn't
set (`vc-git-diff-switches' for git, for instance), and
`vc-diff-switches' isn't set."
:type '(choice string (repeat string))
:group 'diff)