comparison lisp/vc.el @ 40181:55d912b5d0cc

(vc-diff-switches): Doc rewritten.
author André Spiegel <spiegel@gnu.org>
date Mon, 22 Oct 2001 12:13:29 +0000
parents 115527dd1d27
children 6edf1e051b27
comparison
equal deleted inserted replaced
40180:1e1baaa720e5 40181:55d912b5d0cc
4 4
5 ;; Author: FSF (see below for full credits) 5 ;; Author: FSF (see below for full credits)
6 ;; Maintainer: Andre Spiegel <spiegel@gnu.org> 6 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
7 ;; Keywords: tools 7 ;; Keywords: tools
8 8
9 ;; $Id: vc.el,v 1.313 2001/10/21 23:31:45 spiegel Exp $ 9 ;; $Id: vc.el,v 1.314 2001/10/22 07:54:03 spiegel Exp $
10 10
11 ;; This file is part of GNU Emacs. 11 ;; This file is part of GNU Emacs.
12 12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify 13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by 14 ;; it under the terms of the GNU General Public License as published by
484 (defconst vc-maximum-comment-ring-size 32 484 (defconst vc-maximum-comment-ring-size 32
485 "Maximum number of saved comments in the comment ring.") 485 "Maximum number of saved comments in the comment ring.")
486 486
487 (defcustom vc-diff-switches nil 487 (defcustom vc-diff-switches nil
488 "*A string or list of strings specifying switches for diff under VC. 488 "*A string or list of strings specifying switches for diff under VC.
489 There is also an option vc-BACKEND-diff-switches for each BACKEND that 489 When running diff under a given BACKEND, VC concatenates the values of
490 VC can handle." 490 `diff-switches', `vc-diff-switches', and `vc-BACKEND-diff-switches' to
491 get the switches for that command. Thus, `vc-diff-switches' should
492 contain switches that are specific to version control, but not
493 specific to any particular backend."
491 :type '(choice (const :tag "None" nil) 494 :type '(choice (const :tag "None" nil)
492 (string :tag "Argument String") 495 (string :tag "Argument String")
493 (repeat :tag "Argument List" 496 (repeat :tag "Argument List"
494 :value ("") 497 :value ("")
495 string)) 498 string))