From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.devel Subject: Re: find-file-read-args Date: Sun, 15 Nov 2009 18:28:48 +0100 Message-ID: <4B003A50.30601@gmx.at> References: <3b31caf90911051613w80af4cu61352a29ce5dcd77@mail.gmail.com> <87vdhoe73d.fsf@mail.jurta.org> <87y6mkb6qr.fsf@mail.jurta.org> <87bpjfiark.fsf@mail.jurta.org> <871vk8uo0q.fsf@mail.jurta.org> <87ocn8ayrw.fsf@mail.jurta.org> <4AFBE741.1040506@gmx.at> <87tyx05849.fsf@mail.jurta.org> <871vjz27lw.fsf@mail.jurta.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1258306155 1144 80.91.229.12 (15 Nov 2009 17:29:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 15 Nov 2009 17:29:15 +0000 (UTC) Cc: Stefan Monnier , emacs-devel@gnu.org To: Juri Linkov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Nov 15 18:29:08 2009 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 1N9iuR-00079v-G5 for ged-emacs-devel@m.gmane.org; Sun, 15 Nov 2009 18:29:07 +0100 Original-Received: from localhost ([127.0.0.1]:40717 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N9iuQ-0005mZ-Pv for ged-emacs-devel@m.gmane.org; Sun, 15 Nov 2009 12:29:06 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N9iuL-0005mM-EQ for emacs-devel@gnu.org; Sun, 15 Nov 2009 12:29:01 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N9iuF-0005lr-HB for emacs-devel@gnu.org; Sun, 15 Nov 2009 12:28:59 -0500 Original-Received: from [199.232.76.173] (port=44095 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N9iuF-0005lj-DT for emacs-devel@gnu.org; Sun, 15 Nov 2009 12:28:55 -0500 Original-Received: from mail.gmx.net ([213.165.64.20]:46033) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1N9iuE-0004bO-Nt for emacs-devel@gnu.org; Sun, 15 Nov 2009 12:28:55 -0500 Original-Received: (qmail invoked by alias); 15 Nov 2009 17:28:51 -0000 Original-Received: from 62-47-60-231.adsl.highway.telekom.at (EHLO [62.47.60.231]) [62.47.60.231] by mail.gmx.net (mp025) with SMTP; 15 Nov 2009 18:28:51 +0100 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX1+JPwIBjliJ0xBtt4mYR/8+xLGoebufdftK9b7dF3 md3S5WByGjeYyU User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) In-Reply-To: <871vjz27lw.fsf@mail.jurta.org> X-Y-GMX-Trusted: 0 X-FuHaFi: 0.78 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. 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:117010 Archived-At: > Unfortunately, `minibuffer-selected-window' is useless for Dired. > It returns the wrong window. Instead of returning the original Dired > buffer's window it returns " *Marked Files*". Then the *Marked Files* buffer needs a buffer-local back reference to the Dired window selected at the time the buffer was created. The assignment could be made directly before the `dired-pop-to-buffer' call in `dired-mark-pop-up'. martin