diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-06-13 18:00:34 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-06-13 18:00:34 +0000 |
commit | b4c4ba4182036650b9f8293ee9b5175714bb532b (patch) | |
tree | bda9b6de377fce36bd3c5e1a93f486119612472c /lisp/vc-arch.el | |
parent | 9f505b2e68574152e1090eec9cbbd3f5f47106d9 (diff) | |
download | emacs-b4c4ba4182036650b9f8293ee9b5175714bb532b.tar.gz |
(vc-arch-command): Remove bzr. It's a different program.
Diffstat (limited to 'lisp/vc-arch.el')
-rw-r--r-- | lisp/vc-arch.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-arch.el b/lisp/vc-arch.el index e3dc76b090a..ede8c57ec98 100644 --- a/lisp/vc-arch.el +++ b/lisp/vc-arch.el @@ -62,7 +62,7 @@ ;;; (defvar vc-arch-command - (let ((candidates '("tla" "baz" "bzr"))) + (let ((candidates '("tla" "baz"))) (while (and candidates (not (executable-find (car candidates)))) (setq candidates (cdr candidates))) (or (car candidates) "tla"))) |