From: "Drew Adams" <drew.adams@oracle.com>
Subject: RE: Qs on obarrays
Date: Wed, 12 Oct 2005 10:14:40 -0700 [thread overview]
Message-ID: <DNEMKBNJBGPAOPIJOOICCEFECNAA.drew.adams@oracle.com> (raw)
In-Reply-To: <dijcvd$jlp$1@sea.gmane.org>
An alternative is to change just the predicate to check the standard
obarray:
(let ((my-obarray (make-vector 7 0)))
(dolist (name my-names) (intern name my-obarray))
(all-completions "" my-obarray
(lambda (symbol)
(commandp (intern (symbol-name symbol))))))
I ended up doing something similar, since the original predicate (commandp)
will only work with the standard `obarray' (as Pascal pointed out so well).
Actually, I don't bother creating a new obarray, after all. I just use an
alist (easier to manipulate) and redefine the predicate to work with that:
(all-completions "" my-alist (lambda (elt) (commandp (intern (car elt)))))
Or, more generally (what I really do):
(when (arrayp minibuffer-completion-table)
(setq minibuffer-completion-predicate
`(lambda (elt)
(funcall ',minibuffer-completion-predicate
(intern (car elt))))))
(setq minibuffer-completion-table
my-alist) ; Built by filtering `minibuffer-completion-table'.
...
(all-completions "" minibuffer-completion-table
minibuffer-completion-predicate)
Thanks to all for the input.
next prev parent reply other threads:[~2005-10-12 17:14 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <mailman.10964.1129078391.20277.help-gnu-emacs@gnu.org>
2005-10-12 1:32 ` Qs on obarrays Pascal Bourguignon
2005-10-12 2:02 ` Drew Adams
2005-10-12 16:17 ` Kevin Rodgers
2005-10-12 17:14 ` Drew Adams [this message]
2005-10-12 18:23 ` Kevin Rodgers
2005-10-12 20:24 ` Drew Adams
2005-10-12 15:53 ` Stefan Monnier
2005-10-12 0:52 Drew Adams
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=DNEMKBNJBGPAOPIJOOICCEFECNAA.drew.adams@oracle.com \
--to=drew.adams@oracle.com \
/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.
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).