changeset 81326:c5703a4ef5e9

(vc-arch-command): Also try "baz" and "bzr".
author Sam Steingold <sds@gnu.org>
date Tue, 12 Jun 2007 13:37:56 +0000
parents 932ce96a25e2
children f43a57ce897e
files lisp/ChangeLog lisp/vc-arch.el
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Tue Jun 12 11:14:52 2007 +0000
+++ b/lisp/ChangeLog	Tue Jun 12 13:37:56 2007 +0000
@@ -1,3 +1,7 @@
+2007-06-12  Sam Steingold  <sds@gnu.org>
+
+	* vc-arch.el (vc-arch-command): Also try "baz" and "bzr".
+
 2007-06-12  Juanma Barranquero  <lekktu@gmail.com>
 
 	* desktop.el (desktop-load-locked-desktop): New option.
--- a/lisp/vc-arch.el	Tue Jun 12 11:14:52 2007 +0000
+++ b/lisp/vc-arch.el	Tue Jun 12 13:37:56 2007 +0000
@@ -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")))