comparison lisp/vc-mcvs.el @ 50924:15bfd674106a

(vc-mcvs-stay-local): Remove unused var.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 09 May 2003 14:35:51 +0000
parents d3bb1d77a4b1
children dc235df7e226
comparison
equal deleted inserted replaced
50923:3eab629b1239 50924:15bfd674106a
103 (defcustom vc-mcvs-use-edit vc-cvs-use-edit 103 (defcustom vc-mcvs-use-edit vc-cvs-use-edit
104 "*Non-nil means to use `cvs edit' to \"check out\" a file. 104 "*Non-nil means to use `cvs edit' to \"check out\" a file.
105 This is only meaningful if you don't use the implicit checkout model 105 This is only meaningful if you don't use the implicit checkout model
106 \(i.e. if you have $CVSREAD set)." 106 \(i.e. if you have $CVSREAD set)."
107 :type 'boolean 107 :type 'boolean
108 :version "21.4"
109 :group 'vc)
110
111 (defcustom vc-mcvs-stay-local vc-cvs-stay-local
112 "*Non-nil means use local operations when possible for remote repositories.
113 This avoids slow queries over the network and instead uses heuristics
114 and past information to determine the current status of a file.
115 The value can also be a regular expression to match against the host name
116 of a repository; then VC only stays local for hosts that match it."
117 :type '(choice (const :tag "Always stay local" t)
118 (string :tag "Host regexp")
119 (const :tag "Don't stay local" nil))
120 :version "21.4" 108 :version "21.4"
121 :group 'vc) 109 :group 'vc)
122 110
123 ;;; 111 ;;;
124 ;;; State-querying functions 112 ;;; State-querying functions