all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Mark Plaksin <happy@usg.edu>
Subject: Re: Use ido for *all* completion?
Date: Sun, 13 Mar 2005 19:25:39 -0500	[thread overview]
Message-ID: <m3d5u3ysxo.fsf@water.tss.usg.edu> (raw)
In-Reply-To: 8765008784.fsf-monnier+gnu.emacs.help@gnu.org

Stefan Monnier <monnier@iro.umontreal.ca> 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.

  reply	other threads:[~2005-03-14  0:25 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.3043.1110317172.32256.help-gnu-emacs@gnu.org>
2005-03-09  0:58 ` Use ido for *all* completion? Oliver Scholz
2005-03-09  1:43   ` Drew Adams
2005-03-09 14:13 ` Stefan Monnier
2005-03-09 17:43   ` Mark Plaksin
     [not found]   ` <mailman.3152.1110391613.32256.help-gnu-emacs@gnu.org>
2005-03-10  4:19     ` Stefan Monnier
2005-03-14  0:25       ` Mark Plaksin [this message]
     [not found] <mailman.3075.1110334732.32256.help-gnu-emacs@gnu.org>
2005-03-09 10:19 ` Oliver Scholz
2005-03-09 17:44   ` Drew Adams
2005-03-09 17:53   ` Romain Francoise
2005-03-09 21:45     ` Oliver Scholz
2005-03-10  7:43       ` Romain Francoise
2005-03-10 12:22         ` Oliver Scholz
2005-03-10 13:27           ` Mark Plaksin
     [not found]           ` <mailman.3281.1110462563.32256.help-gnu-emacs@gnu.org>
2005-03-10 17:02             ` Peter Lee
2005-03-10 17:24               ` Mark Plaksin
2005-03-08 18:14 Mark Plaksin

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m3d5u3ysxo.fsf@water.tss.usg.edu \
    --to=happy@usg.edu \
    /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 external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.