diff options
| author | Glenn Morris | 2008-12-03 07:45:04 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-12-03 07:45:04 +0000 |
| commit | d2ee9b136d5f2cef10237583324f7cfc1892a4cb (patch) | |
| tree | 1262c5f2dcc0a1070cd4290445f5705865557a61 | |
| parent | e1f650f4fcc78b6cb8712f50508039f9617592b1 (diff) | |
| download | emacs-d2ee9b136d5f2cef10237583324f7cfc1892a4cb.tar.gz emacs-d2ee9b136d5f2cef10237583324f7cfc1892a4cb.zip | |
(vc-diff-switches): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 22 | ||||
| -rw-r--r-- | lisp/vc.el | 19 |
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 @@ | |||
| 1 | 2008-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 | |||
| 1 | 2008-12-03 Daiki Ueno <ueno@unixuser.org> | 23 | 2008-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. |
| 700 | When running diff under a given BACKEND, VC concatenates the values of | 700 | When running diff under a given BACKEND, VC uses the first |
| 701 | `diff-switches', `vc-diff-switches', and `vc-BACKEND-diff-switches' to | 701 | non-nil value of `vc-BACKEND-diff-switches', `vc-diff-switches', |
| 702 | get the switches for that command. Thus, `vc-diff-switches' should | 702 | and `diff-switches', in that order. Since nil means to check the |
| 703 | contain switches that are specific to version control, but not | 703 | next variable in the sequence, either of the first two may use |
| 704 | specific to any particular backend." | 704 | the value t to mean no switches at all. `vc-diff-switches' |
| 705 | :type '(choice (const :tag "None" nil) | 705 | should contain switches that are specific to version control, but |
| 706 | not 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 | ||