From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: Making hide-ifdef-use-define-alist more user friendly Date: Tue, 22 Feb 2005 13:12:06 -0500 Message-ID: References: <200502210903.j1L933jt024808@il06exr01.mot.com> <73766b1205022103132eb263ad@mail.gmail.com> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1109095926 3405 80.91.229.2 (22 Feb 2005 18:12:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 22 Feb 2005 18:12:06 +0000 (UTC) Cc: emacs-devel@gnu.org, storm@cua.dk Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Feb 22 19:12:06 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1D3eVo-0003HK-Lx for ged-emacs-devel@m.gmane.org; Tue, 22 Feb 2005 19:11:57 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D3en0-0002fo-Nh for ged-emacs-devel@m.gmane.org; Tue, 22 Feb 2005 13:29:42 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1D3ejz-0001Gk-Lw for emacs-devel@gnu.org; Tue, 22 Feb 2005 13:26:36 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1D3ejx-0001Fg-7E for emacs-devel@gnu.org; Tue, 22 Feb 2005 13:26:33 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D3ejx-0001FO-2U for emacs-devel@gnu.org; Tue, 22 Feb 2005 13:26:33 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1D3eVz-000892-5s for emacs-devel@gnu.org; Tue, 22 Feb 2005 13:12:07 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1D3eVy-0000SR-Ri; Tue, 22 Feb 2005 13:12:06 -0500 Original-To: Juan LEON Lahoz Garcia In-reply-to: <73766b1205022103132eb263ad@mail.gmail.com> (message from Juan LEON Lahoz Garcia on Mon, 21 Feb 2005 12:13:01 +0100) 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 X-MailScanner-To: ged-emacs-devel@m.gmane.org Xref: main.gmane.org gmane.emacs.devel:33733 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:33733 (completing-read "Use define list: " (vconcat (mapcar 'car hide-ifdef-define-alist))) Allows me to complete more things that those found in: (vconcat (mapcar 'car hide-ifdef-define-alist)) The reason for that is that a vector is treated as an obarray. Obarrays are a special mechanism and they use hidden data structures. A vector of symbols is not a legitimate argument.