changeset 81379:fa58a242b75e

(vc-arch-command): Remove bzr. It's a different program.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 13 Jun 2007 18:00:34 +0000
parents 3e8cb1480830
children db32b7ba9c76
files lisp/ChangeLog lisp/vc-arch.el
diffstat 2 files changed, 22 insertions(+), 23 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Wed Jun 13 17:49:14 2007 +0000
+++ b/lisp/ChangeLog	Wed Jun 13 18:00:34 2007 +0000
@@ -1,28 +1,27 @@
+2007-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+	* vc-arch.el (vc-arch-command): Remove bzr.  It's a different program.
+
 2007-06-12  Tom Tromey  <tromey@redhat.com>
 
 	* subr.el (user-emacs-directory): New defconst.
-	* cmuscheme.el (scheme-start-file): Use user-emacs-directory.
-	* shell.el (shell): Use user-emacs-directory.
-	* completion.el (save-completions-file-name): Use
-	user-emacs-directory.
-	* custom.el (custom-theme-directory): Use user-emacs-directory.
-	* term/x-win.el (emacs-session-filename): Use
-	user-emacs-directory.
-	* filesets.el (filesets-menu-cache-file): Use
-	user-emacs-directory.
-	* thumbs.el (thumbs-thumbsdir): Use user-emacs-directory.
-	* server.el (server-auth-dir): Use user-emacs-directory.
-	* image-dired.el (image-dired-dir): Use user-emacs-directory.
-	(image-dired-db-file): Likewise.
-	(image-dired-temp-image-file): Likewise.
-	(image-dired-gallery-dir): Likewise.
-	(image-dired-temp-rotate-image-file): Likewise.
-	* play/gamegrid.el (gamegrid-user-score-file-directory): Use
-	user-emacs-directory.
-	* savehist.el (savehist-file): Use user-emacs-directory.
-	* tutorial.el (tutorial--saved-dir): Use user-emacs-directory.
-	* startup.el (auto-save-list-file-prefix): Use
-	user-emacs-directory.
+	* cmuscheme.el (scheme-start-file):
+	* shell.el (shell):
+	* completion.el (save-completions-file-name):
+	* custom.el (custom-theme-directory):
+	* term/x-win.el (emacs-session-filename):
+	* filesets.el (filesets-menu-cache-file):
+	* thumbs.el (thumbs-thumbsdir):
+	* server.el (server-auth-dir):
+	* image-dired.el (image-dired-dir):
+	(image-dired-db-file):
+	(image-dired-temp-image-file):
+	(image-dired-gallery-dir):
+	(image-dired-temp-rotate-image-file):
+	* play/gamegrid.el (gamegrid-user-score-file-directory):
+	* savehist.el (savehist-file):
+	* tutorial.el (tutorial--saved-dir):
+	* startup.el (auto-save-list-file-prefix): Use user-emacs-directory.
 
 2007-06-12  Ralf Angeli  <angeli@caeruleus.net>
 
--- a/lisp/vc-arch.el	Wed Jun 13 17:49:14 2007 +0000
+++ b/lisp/vc-arch.el	Wed Jun 13 18:00:34 2007 +0000
@@ -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")))