aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-12-03 07:45:04 +0000
committerGlenn Morris2008-12-03 07:45:04 +0000
commitd2ee9b136d5f2cef10237583324f7cfc1892a4cb (patch)
tree1262c5f2dcc0a1070cd4290445f5705865557a61
parente1f650f4fcc78b6cb8712f50508039f9617592b1 (diff)
downloademacs-d2ee9b136d5f2cef10237583324f7cfc1892a4cb.tar.gz
emacs-d2ee9b136d5f2cef10237583324f7cfc1892a4cb.zip
(vc-diff-switches): Doc fix.
-rw-r--r--lisp/ChangeLog22
-rw-r--r--lisp/vc.el19
2 files changed, 32 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 21f805ed537..57cb3703c0e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,25 @@
12008-12-03 Glenn Morris <rgm@gnu.org>
2
3 * vc.el (vc-diff-switches): Doc fix.
4 * vc-bzr.el (vc-bzr-diff-switches): Doc fix. Add t as option.
5 (vc-bzr-log-switches): Doc fix.
6 * vc-cvs.el (vc-cvs-diff-switches): Doc fix. Add t as option.
7 * vc-git.el (vc-git-diff-switches): Doc fix.
8 * vc-hg.el (vc-hg-diff-switches): Doc fix.
9 * vc-mcvs.el (vc-mcvs-diff-switches): Doc fix.
10 * vc-mtn.el (vc-mtn-diff-switches): Doc fix.
11 * vc-rcs.el (vc-rcs-diff-switches): Doc fix. Add t as option.
12 * vc-sccs.el (vc-sccs-diff-switches): Doc fix. Add t as option.
13
14 * vc-arch.el (vc-arch-diff-switches): New option, for consistency with
15 other backends.
16 (vc-arch-diff): Apply switches.
17
18 * vc-cvs.el (vc-cvs-diff): Use vc-diff-switches or diff-switches rather
19 than appending.
20
21 * vc-sccs.el (vc-sccs-register-switches): Remove leading * from doc.
22
12008-12-03 Daiki Ueno <ueno@unixuser.org> 232008-12-03 Daiki Ueno <ueno@unixuser.org>
2 24
3 * epa.el (epa--show-key): Use past tense of "expire" if the key 25 * epa.el (epa--show-key): Use past tense of "expire" if the key
diff --git a/lisp/vc.el b/lisp/vc.el
index 865a4018eb1..b87fe7137d4 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -697,16 +697,17 @@ These are passed to the checkin program by \\[vc-register]."
697 697
698(defcustom vc-diff-switches nil 698(defcustom vc-diff-switches nil
699 "A string or list of strings specifying switches for diff under VC. 699 "A string or list of strings specifying switches for diff under VC.
700When running diff under a given BACKEND, VC concatenates the values of 700When running diff under a given BACKEND, VC uses the first
701`diff-switches', `vc-diff-switches', and `vc-BACKEND-diff-switches' to 701non-nil value of `vc-BACKEND-diff-switches', `vc-diff-switches',
702get the switches for that command. Thus, `vc-diff-switches' should 702and `diff-switches', in that order. Since nil means to check the
703contain switches that are specific to version control, but not 703next variable in the sequence, either of the first two may use
704specific to any particular backend." 704the value t to mean no switches at all. `vc-diff-switches'
705 :type '(choice (const :tag "None" nil) 705should contain switches that are specific to version control, but
706not specific to any particular backend."
707 :type '(choice (const :tag "Unspecified" nil)
708 (const :tag "None" t)
706 (string :tag "Argument String") 709 (string :tag "Argument String")
707 (repeat :tag "Argument List" 710 (repeat :tag "Argument List" :value ("") string))
708 :value ("")
709 string))
710 :group 'vc 711 :group 'vc
711 :version "21.1") 712 :version "21.1")
712 713