From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: ido-read-directory-name and ido-magic-forward-char Date: Wed, 8 Jun 2005 13:10:04 +0200 Message-ID: Reply-To: Juanma Barranquero NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1118229483 1982 80.91.229.2 (8 Jun 2005 11:18:03 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 8 Jun 2005 11:18:03 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jun 08 13:17:55 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DfyYk-00089a-M9 for ged-emacs-devel@m.gmane.org; Wed, 08 Jun 2005 13:17:22 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DfyfS-0005of-E1 for ged-emacs-devel@m.gmane.org; Wed, 08 Jun 2005 07:24:18 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DfydF-0005Eo-38 for emacs-devel@gnu.org; Wed, 08 Jun 2005 07:22:01 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DfycJ-00051c-QR for emacs-devel@gnu.org; Wed, 08 Jun 2005 07:21:20 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DfycE-0004qG-Ib for emacs-devel@gnu.org; Wed, 08 Jun 2005 07:20:59 -0400 Original-Received: from [64.233.182.198] (helo=nproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DfyVG-000819-KZ for emacs-devel@gnu.org; Wed, 08 Jun 2005 07:13:46 -0400 Original-Received: by nproxy.gmail.com with SMTP id i2so46248nfe for ; Wed, 08 Jun 2005 04:10:04 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=QOnz84Qk4FuztTj/HT03TkYrk184j/JXGm/Kigj86DsciM3e3Tbu3gLsmmdYZqLLr223vF4YpcuCeOsao2EYO65zwck/bUcqtRMeQzIUOWnB2LFj/tLOEEI29e3Qu6U+dAm4eB8TYCcKqY0UvF5hXh9+RJpPJ7gYm3aSAN23/yI= Original-Received: by 10.48.4.15 with SMTP id 15mr89054nfd; Wed, 08 Jun 2005 04:10:04 -0700 (PDT) Original-Received: by 10.48.250.5 with HTTP; Wed, 8 Jun 2005 04:10:04 -0700 (PDT) Original-To: emacs-devel@gnu.org Content-Disposition: inline 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:38313 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:38313 Why does ido-magic-forward-char (C-f) does not fall back to "normal" read on directory reads via ido-read-directory-name? (call-interactively #'(lambda (file) (interactive "Ffile: ") file)) falls back to read-file-name, but (call-interactively #'(lambda (dir) (interactive "DDir: ") dir)) does not. !? ido is a wonderful and very well-thought package, so I'm assuming this is not a problem but a design choice, but still I find it puzzling. --=20 /L/e/k/t/u