aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2003-05-09 14:35:51 +0000
committerStefan Monnier2003-05-09 14:35:51 +0000
commit89c52be24c3c9a757f4a5ddd7d96cd7d3385fb58 (patch)
treea16e33de110cf003c9658c0092ec32a35b017b25
parenta0688443cc452106c01d7fb4474949a27c178322 (diff)
downloademacs-89c52be24c3c9a757f4a5ddd7d96cd7d3385fb58.tar.gz
emacs-89c52be24c3c9a757f4a5ddd7d96cd7d3385fb58.zip
(vc-mcvs-stay-local): Remove unused var.
-rw-r--r--lisp/vc-mcvs.el12
1 files changed, 0 insertions, 12 deletions
diff --git a/lisp/vc-mcvs.el b/lisp/vc-mcvs.el
index b0b270513de..b8b79a22d47 100644
--- a/lisp/vc-mcvs.el
+++ b/lisp/vc-mcvs.el
@@ -108,18 +108,6 @@ This is only meaningful if you don't use the implicit checkout model
108 :version "21.4" 108 :version "21.4"
109 :group 'vc) 109 :group 'vc)
110 110
111(defcustom vc-mcvs-stay-local vc-cvs-stay-local
112 "*Non-nil means use local operations when possible for remote repositories.
113This avoids slow queries over the network and instead uses heuristics
114and past information to determine the current status of a file.
115The value can also be a regular expression to match against the host name
116of 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"
121 :group 'vc)
122
123;;; 111;;;
124;;; State-querying functions 112;;; State-querying functions
125;;; 113;;;