From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.bugs Subject: bug#50572: 28.0.50; [PATCH] fix VC to find the responsible backend with the most specific path. Date: Mon, 13 Sep 2021 19:10:07 +0300 Message-ID: <83y280cv8g.fsf@gnu.org> References: <877dfkxyt4.fsf@elite.giraud> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="17257"; mail-complaints-to="usenet@ciao.gmane.io" Cc: 50572@debbugs.gnu.org To: Manuel Giraud Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Mon Sep 13 18:13:00 2021 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mPoZn-0004GZ-LF for geb-bug-gnu-emacs@m.gmane-mx.org; Mon, 13 Sep 2021 18:12:59 +0200 Original-Received: from localhost ([::1]:56974 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mPoZl-0002OW-PI for geb-bug-gnu-emacs@m.gmane-mx.org; Mon, 13 Sep 2021 12:12:57 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:60360) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mPoXu-00079a-5G for bug-gnu-emacs@gnu.org; Mon, 13 Sep 2021 12:11:02 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:35165) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1mPoXt-0007QC-U1 for bug-gnu-emacs@gnu.org; Mon, 13 Sep 2021 12:11:01 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1mPoXt-0002ru-NZ for bug-gnu-emacs@gnu.org; Mon, 13 Sep 2021 12:11:01 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 13 Sep 2021 16:11:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 50572 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch Original-Received: via spool by 50572-submit@debbugs.gnu.org id=B50572.163154942210979 (code B ref 50572); Mon, 13 Sep 2021 16:11:01 +0000 Original-Received: (at 50572) by debbugs.gnu.org; 13 Sep 2021 16:10:22 +0000 Original-Received: from localhost ([127.0.0.1]:46711 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mPoXG-0002r1-93 for submit@debbugs.gnu.org; Mon, 13 Sep 2021 12:10:22 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:43114) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mPoXF-0002qo-0w for 50572@debbugs.gnu.org; Mon, 13 Sep 2021 12:10:21 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:43504) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mPoX8-0006r9-T0; Mon, 13 Sep 2021 12:10:14 -0400 Original-Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:4315 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mPoX8-00072o-2k; Mon, 13 Sep 2021 12:10:14 -0400 In-Reply-To: <877dfkxyt4.fsf@elite.giraud> (message from Manuel Giraud on Mon, 13 Sep 2021 17:47:19 +0200) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.io gmane.emacs.bugs:214243 Archived-At: > From: Manuel Giraud > Date: Mon, 13 Sep 2021 17:47:19 +0200 > > When calling 'vc-next-action' on an unregistered file, VC could choose a > backend that is very far above this file in the directory hierarchy. > > In my case, it chooses SVN as backend (because I have one in my homedir) > but I wanted it to choose the Git backend of the directory this file > resides. > > This patch solves this issue by selecting the backend with the most > specific (in fact, the longest string) path to the file. Isn't that already available with "C-u C-x v v"?