comparison lisp/vc-svn.el @ 59996:aac0a33f5772

Change release version from 21.4 to 22.1 throughout. Change development version from 21.3.50 to 22.0.50.
author Kim F. Storm <storm@cua.dk>
date Wed, 09 Feb 2005 15:50:47 +0000
parents 1ba18e657796
children 6fb026ad601f 3ebd9bdb4fe5
comparison
equal deleted inserted replaced
59995:8f4938738427 59996:aac0a33f5772
49 :type '(choice (const :tag "None" nil) 49 :type '(choice (const :tag "None" nil)
50 (string :tag "Argument String") 50 (string :tag "Argument String")
51 (repeat :tag "Argument List" 51 (repeat :tag "Argument List"
52 :value ("") 52 :value ("")
53 string)) 53 string))
54 :version "21.4" 54 :version "22.1"
55 :group 'vc) 55 :group 'vc)
56 56
57 (defcustom vc-svn-register-switches nil 57 (defcustom vc-svn-register-switches nil
58 "*Extra switches for registering a file into SVN. 58 "*Extra switches for registering a file into SVN.
59 A string or list of strings passed to the checkin program by 59 A string or list of strings passed to the checkin program by
61 :type '(choice (const :tag "None" nil) 61 :type '(choice (const :tag "None" nil)
62 (string :tag "Argument String") 62 (string :tag "Argument String")
63 (repeat :tag "Argument List" 63 (repeat :tag "Argument List"
64 :value ("") 64 :value ("")
65 string)) 65 string))
66 :version "21.4" 66 :version "22.1"
67 :group 'vc) 67 :group 'vc)
68 68
69 (defcustom vc-svn-diff-switches 69 (defcustom vc-svn-diff-switches
70 t ;`svn' doesn't support common args like -c or -b. 70 t ;`svn' doesn't support common args like -c or -b.
71 "String or list of strings specifying extra switches for svn diff under VC. 71 "String or list of strings specifying extra switches for svn diff under VC.
75 (const :tag "None" t) 75 (const :tag "None" t)
76 (string :tag "Argument String") 76 (string :tag "Argument String")
77 (repeat :tag "Argument List" 77 (repeat :tag "Argument List"
78 :value ("") 78 :value ("")
79 string)) 79 string))
80 :version "21.4" 80 :version "22.1"
81 :group 'vc) 81 :group 'vc)
82 82
83 (defcustom vc-svn-header (or (cdr (assoc 'SVN vc-header-alist)) '("\$Id\$")) 83 (defcustom vc-svn-header (or (cdr (assoc 'SVN vc-header-alist)) '("\$Id\$"))
84 "*Header keywords to be inserted by `vc-insert-headers'." 84 "*Header keywords to be inserted by `vc-insert-headers'."
85 :version "21.4" 85 :version "22.1"
86 :type '(repeat string) 86 :type '(repeat string)
87 :group 'vc) 87 :group 'vc)
88 88
89 (defconst vc-svn-use-edit nil 89 (defconst vc-svn-use-edit nil
90 ;; Subversion does not provide this feature (yet). 90 ;; Subversion does not provide this feature (yet).
91 "*Non-nil means to use `svn edit' to \"check out\" a file. 91 "*Non-nil means to use `svn edit' to \"check out\" a file.
92 This is only meaningful if you don't use the implicit checkout model 92 This is only meaningful if you don't use the implicit checkout model
93 \(i.e. if you have $SVNREAD set)." 93 \(i.e. if you have $SVNREAD set)."
94 ;; :type 'boolean 94 ;; :type 'boolean
95 ;; :version "21.4" 95 ;; :version "22.1"
96 ;; :group 'vc 96 ;; :group 'vc
97 ) 97 )
98 98
99 ;;; 99 ;;;
100 ;;; State-querying functions 100 ;;; State-querying functions