From: William Xu <william.xwl@gmail.com>
To: emacs-devel@gnu.org
Subject: Re: about ido-completing-read and completing-read
Date: Thu, 31 May 2007 18:50:20 +0800 [thread overview]
Message-ID: <878xb5cln7.fsf@www.williamxu.com> (raw)
In-Reply-To: f7ccd24b0705310301r1c474cb0tf4b1edb38a29887a@mail.gmail.com
"Juanma Barranquero" <lekktu@gmail.com> writes:
On 5/31/07, William Xu <william.xwl@gmail.com> wrote:
> I find myself is keeping modifying their source codes
> to replace completing-read with ido-completing-read..
You could try this:
(defvar *completing-read-recursive* nil)
(defadvice completing-read (around my-completing-read activate compile)
(if *completing-read-recursive*
ad-do-it
(let ((*completing-read-recursive* t))
(ido-completing-read prompt collection predicate require-match
initial-input hist def))))
to see whether it helps.
Hmm, this would break some things. For instance, describe-function will
fail now. Also, the `collection' parameter is different between
them, ido-completing-read only accepts lists.
--
William
next prev parent reply other threads:[~2007-05-31 10:50 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-31 4:22 about ido-completing-read and completing-read William Xu
2007-05-31 10:01 ` Juanma Barranquero
2007-05-31 10:50 ` William Xu [this message]
2007-05-31 14:49 ` Juanma Barranquero
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=878xb5cln7.fsf@www.williamxu.com \
--to=william.xwl@gmail.com \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).