From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.bugs Subject: Re: Possible bug in filename completion Date: Thu, 07 Jun 2007 20:30:30 -0400 Message-ID: References: <5dbc5e390706070733v6c806aa8oa435a89f0421cf97@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1181262641 13689 80.91.229.12 (8 Jun 2007 00:30:41 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 8 Jun 2007 00:30:41 +0000 (UTC) Cc: bug-gnu-emacs@gnu.org To: anned@alum.mit.edu Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Fri Jun 08 02:30:39 2007 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.50) id 1HwSNA-0000Gs-VH for geb-bug-gnu-emacs@m.gmane.org; Fri, 08 Jun 2007 02:30:37 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HwSN9-0000Pu-BT for geb-bug-gnu-emacs@m.gmane.org; Thu, 07 Jun 2007 20:30:35 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HwSN7-0000Nc-5o for bug-gnu-emacs@gnu.org; Thu, 07 Jun 2007 20:30:33 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HwSN6-0000M5-2R for bug-gnu-emacs@gnu.org; Thu, 07 Jun 2007 20:30:32 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HwSN5-0000Ly-Si for bug-gnu-emacs@gnu.org; Thu, 07 Jun 2007 20:30:31 -0400 Original-Received: from fencepost2.gnu.org ([140.186.70.10] helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HwSN5-00045U-52 for bug-gnu-emacs@gnu.org; Thu, 07 Jun 2007 20:30:31 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1HwSN4-00067M-Ro; Thu, 07 Jun 2007 20:30:30 -0400 X-Spook: Adriatic AK-47 AIEWS assassination S Box Albania Arnett X-Ran: pvz1s{z}apl:z(=H"phrGbvr0gy|T&9"m8s6y^ZJ6g3'hZZ=N!_^/KnT(6"#Ik9L^*bw&[ X-Hue: red X-Attribution: GM In-Reply-To: <5dbc5e390706070733v6c806aa8oa435a89f0421cf97@mail.gmail.com> (Anne Dudfield's message of "Thu, 7 Jun 2007 10:33:54 -0400") User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list 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:15787 Archived-At: "Anne Dudfield" wrote: > I have a directory ~/etest containing the following files: > > blah > blahblah > blah-blah > blah-1 > > If I C-x C-f and navigate to this directory, then hit space ONCE, I > see in the minibuffer: > > Find file: ~/etest/blah > > If I hit space again, I see: > > Find file: ~/etest/blah- > > If I hit space again, I see that, plus the completions list: blah-1 > and blah-blah. It seems to ignore the files without dashes in the name. You can press TAB instead of space, or you can use: (define-key minibuffer-local-completion-map " " 'minibuffer-complete) if you don't want to retrain your fingers. (Note that in Emacs 22, space no longer completes.)