From 308b0b573ef7a78f70eb7d5ddb2c72f6860ea2fe Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Tue, 13 Feb 2007 23:43:34 +0000 Subject: [PATCH] emacs: Make sure Git is first in the list of VC backends. This way, when there's a conflict (e.g., with gcvs) the right version control system will win. --- emacs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs b/emacs index 88c181a..e71b23b 100644 --- a/emacs +++ b/emacs @@ -41,7 +41,7 @@ (maybe-autoload 'git-status "git" nil t) (and (library-exists-p "vc-git") (not (memq 'GIT vc-handled-backends)) - (setq vc-handled-backends (append vc-handled-backends (list 'GIT)))) + (setq vc-handled-backends (cons 'GIT vc-handled-backends))) (and (library-exists-p "quilt") (load "quilt")) -- 2.11.0