From e7053211d6a203c7f91782a15f669cf1e0276a3b Mon Sep 17 00:00:00 2001 From: Sam Steingold Date: Tue, 12 Jun 2007 13:37:56 +0000 Subject: [PATCH] (vc-arch-command): Also try "baz" and "bzr". --- lisp/ChangeLog | 4 ++++ lisp/vc-arch.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 086da569412..db8fca98edc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-06-12 Sam Steingold + + * vc-arch.el (vc-arch-command): Also try "baz" and "bzr". + 2007-06-12 Juanma Barranquero * desktop.el (desktop-load-locked-desktop): New option. diff --git a/lisp/vc-arch.el b/lisp/vc-arch.el index 488f9108d36..e3dc76b090a 100644 --- a/lisp/vc-arch.el +++ b/lisp/vc-arch.el @@ -62,7 +62,7 @@ ;;; (defvar vc-arch-command - (let ((candidates '("tla"))) + (let ((candidates '("tla" "baz" "bzr"))) (while (and candidates (not (executable-find (car candidates)))) (setq candidates (cdr candidates))) (or (car candidates) "tla"))) -- 2.11.4.GIT