From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: Bug in file name completion Date: Wed, 16 Nov 2005 23:45:44 +0100 Message-ID: <437BB698.5050500@student.lu.se> References: <437A71C7.40209@student.lu.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1132181346 21450 80.91.229.2 (16 Nov 2005 22:49:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 16 Nov 2005 22:49:06 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Nov 16 23:49:05 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EcW2R-0007pP-T1 for ged-emacs-devel@m.gmane.org; Wed, 16 Nov 2005 23:46:00 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EcW2R-0006XV-Ct for ged-emacs-devel@m.gmane.org; Wed, 16 Nov 2005 17:45:59 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EcW2H-0006Wh-Dl for emacs-devel@gnu.org; Wed, 16 Nov 2005 17:45:49 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EcW2G-0006WV-14 for emacs-devel@gnu.org; Wed, 16 Nov 2005 17:45:49 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EcW2F-0006WS-Sd for emacs-devel@gnu.org; Wed, 16 Nov 2005 17:45:47 -0500 Original-Received: from [81.228.11.98] (helo=pne-smtpout1-sn1.fre.skanova.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EcW2F-0005JU-CL; Wed, 16 Nov 2005 17:45:47 -0500 Original-Received: from [192.168.123.121] (83.249.218.244) by pne-smtpout1-sn1.fre.skanova.net (7.2.060.1) id 4378F0CA000C02EC; Wed, 16 Nov 2005 23:45:45 +0100 User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en Original-To: rms@gnu.org In-Reply-To: X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:46126 Archived-At: Richard M. Stallman wrote: > c:/temp/eclean/ > c:/temp/ecvs/ > > When I do > > C-x C-f c:/temp/, TAB > > it just completes to "c:/temp/eclean" instead of showing the > alternatives. > >I wonder if that is due to spuriously matching the "CVS/" element of >completion-ignored-extensions. Maybe we need to change that to "/CVS/". > > The documentation says that Directories are ignored if they match any string in this list which ends in a slash. It does not say that directories ending in any of those strings are ignored. However the code in file_name_completion (in dired.c) looks too me like it ignores directories ending in those strings. Which is the intended behaviour?