From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.bugs Subject: bug#7308: [patch] locate under windoze Date: Sun, 31 Oct 2010 06:51:52 -0400 Message-ID: References: <87hbg3piit.fsf@pusto.de> <83mxpv5qde.fsf@gnu.org> <87eib6d7qi.fsf@pusto.de> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: dough.gmane.org 1288526022 2140 80.91.229.12 (31 Oct 2010 11:53:42 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 31 Oct 2010 11:53:42 +0000 (UTC) Cc: 7308@debbugs.gnu.org To: Eduard Wiebe Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Sun Oct 31 12:53:38 2010 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PCWTf-000225-Gr for geb-bug-gnu-emacs@m.gmane.org; Sun, 31 Oct 2010 12:53:37 +0100 Original-Received: from localhost ([127.0.0.1]:51703 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PCWTd-0006lm-Hm for geb-bug-gnu-emacs@m.gmane.org; Sun, 31 Oct 2010 07:53:33 -0400 Original-Received: from [140.186.70.92] (port=49209 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PCWJh-00018Z-QR for bug-gnu-emacs@gnu.org; Sun, 31 Oct 2010 07:43:19 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PCWJf-00005p-Bn for bug-gnu-emacs@gnu.org; Sun, 31 Oct 2010 07:43:17 -0400 Original-Received: from debbugs.gnu.org ([140.186.70.43]:49462) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PCWJf-0008V1-8b for bug-gnu-emacs@gnu.org; Sun, 31 Oct 2010 07:43:15 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.69) (envelope-from ) id 1PCVpS-0007qK-Bb; Sun, 31 Oct 2010 07:12:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Eli Zaretskii Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-To: owner@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 31 Oct 2010 11:12:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 7308 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch Original-Received: via spool by 7308-submit@debbugs.gnu.org id=B7308.128852348530120 (code B ref 7308); Sun, 31 Oct 2010 11:12:02 +0000 Original-Received: (at 7308) by debbugs.gnu.org; 31 Oct 2010 11:11:25 +0000 Original-Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1PCVor-0007pl-En for submit@debbugs.gnu.org; Sun, 31 Oct 2010 07:11:25 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1PCVoq-0007pg-Od for 7308@debbugs.gnu.org; Sun, 31 Oct 2010 07:11:25 -0400 Original-Received: from eliz by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1PCVVw-0001Xd-IW; Sun, 31 Oct 2010 06:51:52 -0400 In-reply-to: <87eib6d7qi.fsf@pusto.de> (message from Eduard Wiebe on Sun, 31 Oct 2010 10:36:21 +0100) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list Resent-Date: Sun, 31 Oct 2010 07:12:02 -0400 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) 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: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:41305 Archived-At: > From: Eduard Wiebe > Cc: 7308@debbugs.gnu.org > Date: Sun, 31 Oct 2010 10:36:21 +0100 > > > If so, wouldn't it be better to replace backslashes with forward > > slashes before the unquote loop? > > Hmm. I'm not sure. How about an UNC path ala \\sever\share\path? No problem, //server/share/path will work. > If emacs correctly resolve an UNC path with forward slashes so i would > agree. Great. Then running the file name through convert-standard-filename for windows-nt and doing nothing at all for ms-dos should do the trick. (The MSDOS build does not need any changes because the only DOS port of GNU Findutils I'm aware of returns file names with forward slashes.) Thanks.