From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Andreas Schwab Newsgroups: gmane.emacs.devel Subject: Re: vc with svn and git Date: Fri, 24 Feb 2017 16:35:46 +0100 Message-ID: <87varzbnzh.fsf@linux-m68k.org> References: NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1487950573 9828 195.159.176.226 (24 Feb 2017 15:36:13 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Fri, 24 Feb 2017 15:36:13 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) Cc: emacs-devel@gnu.org To: ams@gnu.org (Alfred M. Szmidt) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Feb 24 16:36:10 2017 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1chHuh-0001yk-4t for ged-emacs-devel@m.gmane.org; Fri, 24 Feb 2017 16:36:07 +0100 Original-Received: from localhost ([::1]:38148 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1chHun-0002nV-4N for ged-emacs-devel@m.gmane.org; Fri, 24 Feb 2017 10:36:13 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33566) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1chHub-0002lt-Ou for emacs-devel@gnu.org; Fri, 24 Feb 2017 10:36:02 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1chHua-0001K0-TA for emacs-devel@gnu.org; Fri, 24 Feb 2017 10:36:01 -0500 Original-Received: from mail-out.m-online.net ([2001:a60:0:28:0:1:25:1]:41755) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1chHuW-0001Hy-Qj; Fri, 24 Feb 2017 10:35:56 -0500 Original-Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3vVFYj6RbJz3hnLb; Fri, 24 Feb 2017 16:35:53 +0100 (CET) Original-Received: from localhost (dynscan01.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 3vVFYj4tQgzvkrM; Fri, 24 Feb 2017 16:35:53 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Original-Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan01.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id jsvF-4hzdkCk; Fri, 24 Feb 2017 16:35:52 +0100 (CET) X-Auth-Info: UiuwTrIcYSTlF03ifjKJHNAQ4++3GuKt1NvCZGJ8G/0b001KvXSCjnwb+Tnprwf+ Original-Received: from igel.home (ppp-88-217-19-118.dynamic.mnet-online.de [88.217.19.118]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Fri, 24 Feb 2017 16:35:52 +0100 (CET) Original-Received: by igel.home (Postfix, from userid 1000) id 12AC22C32F6; Fri, 24 Feb 2017 16:35:46 +0100 (CET) X-Yow: I'm totally DESPONDENT over the LIBYAN situation and the price of CHICKEN.. In-Reply-To: (Alfred M. Szmidt's message of "Fri, 24 Feb 2017 10:23:25 -0500") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 2001:a60:0:28:0:1:25:1 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:212569 Archived-At: On Feb 24 2017, ams@gnu.org (Alfred M. Szmidt) wrote: > 2017-02-24 Alfred M. Szmidt (tiny change) > > * lisp/vc/vc-hooks.el (vc-handled-backends): Check SVN backend last. > > > diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el > index 47e923c209..7da1244ef5 100644 > --- a/lisp/vc/vc-hooks.el > +++ b/lisp/vc/vc-hooks.el > @@ -107,7 +107,7 @@ vc-ignore-dir-regexp > :type 'regexp > :group 'vc) > > -(defcustom vc-handled-backends '(RCS CVS SVN SCCS SRC Bzr Git Hg Mtn) > +(defcustom vc-handled-backends '(RCS CVS SCCS SRC Bzr Git Hg Mtn SVN) > ;; RCS, CVS, SVN, SCCS, and SRC come first because they are per-dir > ;; rather than per-tree. RCS comes first because of the multibackend > ;; support intended to use RCS for local commits (with a remote CVS server). Did you read the comment? Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different."