From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mark Plaksin Newsgroups: gmane.emacs.help Subject: Re: Use ido for *all* completion? Date: Sun, 13 Mar 2005 19:25:39 -0500 Message-ID: References: <87br9saow9.fsf-monnier+gnu.emacs.help@gnu.org> <8765008784.fsf-monnier+gnu.emacs.help@gnu.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1110760419 12979 80.91.229.2 (14 Mar 2005 00:33:39 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 14 Mar 2005 00:33:39 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Mar 14 01:33:39 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DAdVa-00089y-7g for geh-help-gnu-emacs@m.gmane.org; Mon, 14 Mar 2005 01:32:34 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DAdlA-0001pl-5i for geh-help-gnu-emacs@m.gmane.org; Sun, 13 Mar 2005 19:48:40 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DAdkN-0001cy-U3 for help-gnu-emacs@gnu.org; Sun, 13 Mar 2005 19:47:53 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DAdkE-0001Wh-Il for help-gnu-emacs@gnu.org; Sun, 13 Mar 2005 19:47:42 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DAdkC-0001Vm-HE for help-gnu-emacs@gnu.org; Sun, 13 Mar 2005 19:47:40 -0500 Original-Received: from [80.91.229.2] (helo=ciao.gmane.org) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1DAdQU-0005q8-A1 for help-gnu-emacs@gnu.org; Sun, 13 Mar 2005 19:27:18 -0500 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1DAdOw-0006oA-8x for help-gnu-emacs@gnu.org; Mon, 14 Mar 2005 01:25:42 +0100 Original-Received: from water.tss.usg.edu ([168.24.82.53]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Mar 2005 01:25:42 +0100 Original-Received: from happy by water.tss.usg.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Mar 2005 01:25:42 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: help-gnu-emacs@gnu.org Original-Lines: 27 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: water.tss.usg.edu User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:FsswNiETvWrJVznL8C8J4hV3SjU= X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org X-MailScanner-To: geh-help-gnu-emacs@m.gmane.org Xref: news.gmane.org gmane.emacs.help:24804 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:24804 Stefan Monnier writes: >>>> CVS Emacs finally broke lightning completion[1] for me so I decided to >>>> look at ido. >>> >>> Please report it via M-x report-emacs-bug. > >> Do you mean I should report that I'd like ido-like completion for >> everything? > > Well, you could do that too, but I mostly meant that you should report that > Emacs-CVS breaks lightning.el. Heh. The problem with lightning completion turned out to be a bad test. It tested for Emacs 21 with (= emacs-major-version 21) instead of (>= emacs-major-version 21) Changing the defconst to this fixed the problem: (defconst lc-emacs-21-p (and (boundp 'emacs-major-version) (not lc-xemacs-p) (>= emacs-major-version 21)) "Non-nil if using GNU Emacs >= 21.") I still plan to try to make ido work for all minibuffer completion.