From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sven Joachim Newsgroups: gmane.emacs.devel,gmane.emacs.pretest.bugs Subject: Re: 23.0.60; Minibuffer for M-x dired broken Date: Thu, 01 May 2008 08:28:57 +0200 Message-ID: <87tzhiwn9y.fsf@gmx.de> References: <877ieey3ym.fsf@gmx.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1209623592 23656 80.91.229.12 (1 May 2008 06:33:12 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 1 May 2008 06:33:12 +0000 (UTC) Cc: rfrancoise@debian.org To: emacs-pretest-bug@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu May 01 08:33:49 2008 connect(): Connection refused Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JrSMV-0005Bp-GW for ged-emacs-devel@m.gmane.org; Thu, 01 May 2008 08:33:47 +0200 Original-Received: from localhost ([127.0.0.1]:60827 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JrSLn-0005LM-Ph for ged-emacs-devel@m.gmane.org; Thu, 01 May 2008 02:33:03 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JrSLk-0005KR-3G for emacs-devel@gnu.org; Thu, 01 May 2008 02:33:00 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JrSLi-0005Im-If for emacs-devel@gnu.org; Thu, 01 May 2008 02:32:59 -0400 Original-Received: from [199.232.76.173] (port=39864 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JrSLi-0005IR-Ae for emacs-devel@gnu.org; Thu, 01 May 2008 02:32:58 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JrSLi-0004oP-A2 for emacs-devel@gnu.org; Thu, 01 May 2008 02:32:58 -0400 Original-Received: from mail.gnu.org ([199.232.76.166]:59896 helo=mx10.gnu.org) by fencepost.gnu.org with esmtp (Exim 4.67) (envelope-from ) id 1JrSLN-0005xF-Ne for emacs-pretest-bug@gnu.org; Thu, 01 May 2008 02:32:37 -0400 Original-Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1JrSLd-0004nc-BQ for emacs-pretest-bug@gnu.org; Thu, 01 May 2008 02:32:57 -0400 Original-Received: from mail.gmx.net ([213.165.64.20]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JrSLc-0004nF-TA for emacs-pretest-bug@gnu.org; Thu, 01 May 2008 02:32:53 -0400 Original-Received: (qmail invoked by alias); 01 May 2008 06:32:51 -0000 Original-Received: from p548651F9.dip.t-dialin.net (EHLO debian) [84.134.81.249] by mail.gmx.net (mp005) with SMTP; 01 May 2008 08:32:51 +0200 X-Authenticated: #28250155 X-Provags-ID: V01U2FsdGVkX1+8//kPTt28oze3FTbK/KhwAjYmZ7eZoiTr9LfUeF sbeQbHl9PfApE8 In-Reply-To: <877ieey3ym.fsf@gmx.de> (Sven Joachim's message of "Thu, 01 May 2008 07:43:13 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-Y-GMX-Trusted: 0 X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:96264 gmane.emacs.pretest.bugs:22167 Archived-At: On 2008-05-01 07:43 +0200, Sven Joachim wrote: > Start Emacs somewhere, e.g. in your home directory, and type C-x d > /usr. The original part of the filename is not greyed out as it's > supposed to be with file-name-shadow-mode enabled, and if you press RET, > you get an error message: > > Reading directory: no such file or directory, /home/sven/usr > > Finding files with C-x C-f works correctly, though. Reverting the following change fixes the problem: ,---- | 2008-04-29 Stefan Monnier | | [...] | * dired.el (dired-read-dir-and-switches): Replace last change with | a new approach that mixes read-file-name and read-directory-name. `---- Sven