From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Davis Herring" Newsgroups: gmane.emacs.devel Subject: Re: A way to get a list of available functions / variables? Date: Fri, 16 May 2008 15:23:49 -0700 (PDT) Message-ID: <33274.128.165.123.18.1210976629.squirrel@webmail.lanl.gov> References: <87bq665nsz.fsf@lionel.metasyntax.net> <874pbyb97l.fsf@saeurebad.de> Reply-To: herring@lanl.gov NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1210976653 898 80.91.229.12 (16 May 2008 22:24:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 16 May 2008 22:24:13 +0000 (UTC) Cc: Taylor Venable To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat May 17 00:24:47 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Jx8M3-0001PY-1e for ged-emacs-devel@m.gmane.org; Sat, 17 May 2008 00:24:47 +0200 Original-Received: from localhost ([127.0.0.1]:47293 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jx8LJ-00060w-Fl for ged-emacs-devel@m.gmane.org; Fri, 16 May 2008 18:24:01 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Jx8LE-00060f-Nu for emacs-devel@gnu.org; Fri, 16 May 2008 18:23:56 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Jx8LC-00060I-RW for emacs-devel@gnu.org; Fri, 16 May 2008 18:23:56 -0400 Original-Received: from [199.232.76.173] (port=49486 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jx8LC-00060D-Km for emacs-devel@gnu.org; Fri, 16 May 2008 18:23:54 -0400 Original-Received: from proofpoint3.lanl.gov ([204.121.3.28]:57641) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Jx8LC-0000U2-1H for emacs-devel@gnu.org; Fri, 16 May 2008 18:23:54 -0400 Original-Received: from mailrelay1.lanl.gov (mailrelay1.lanl.gov [128.165.4.101]) by proofpoint3.lanl.gov (8.13.8/8.13.8) with ESMTP id m4GMNn8S028809; Fri, 16 May 2008 16:23:50 -0600 Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by mailrelay1.lanl.gov (Postfix) with ESMTP id 843251519F3; Fri, 16 May 2008 16:23:49 -0600 (MDT) X-CTN-5-Virus-Scanner: amavisd-new at mailrelay1.lanl.gov Original-Received: from mailrelay1.lanl.gov (localhost.localdomain [127.0.0.1]) by mailrelay1.lanl.gov (Postfix) with ESMTP id 6A7B91519F4; Fri, 16 May 2008 16:23:49 -0600 (MDT) Original-Received: from webmail1.lanl.gov (webmail1.lanl.gov [128.165.4.106]) by mailrelay1.lanl.gov (Postfix) with ESMTP id 692211519F3; Fri, 16 May 2008 16:23:49 -0600 (MDT) Original-Received: from webmail1.lanl.gov (localhost.localdomain [127.0.0.1]) by webmail1.lanl.gov (8.12.11.20060308/8.12.11) with ESMTP id m4GMNnEl024103; Fri, 16 May 2008 16:23:49 -0600 Original-Received: (from apache@localhost) by webmail1.lanl.gov (8.12.11.20060308/8.12.11/Submit) id m4GMNnrK024101; Fri, 16 May 2008 15:23:49 -0700 X-Authentication-Warning: webmail1.lanl.gov: apache set sender to herring@lanl.gov using -f Original-Received: from 128.165.123.18 (SquirrelMail authenticated user 196434) by webmail.lanl.gov with HTTP; Fri, 16 May 2008 15:23:49 -0700 (PDT) In-Reply-To: <874pbyb97l.fsf@saeurebad.de> User-Agent: SquirrelMail/1.4.8-6.el3.2lanl X-Priority: 3 (Normal) Importance: Normal X-Proofpoint-Virus-Version: vendor=fsecure engine=4.65.7161:2.4.4, 1.2.40, 4.0.164 definitions=2008-05-16_05:2008-05-14, 2008-05-16, 2008-05-16 signatures=0 X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 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 Xref: news.gmane.org gmane.emacs.devel:97299 Archived-At: > (remove-if-not (lambda (atom) > (or (commandp atom) > (custom-variable-p atom))) > obarray) Unless CL is a lot more clever than I think it is, this won't work: the obarray is really a hash table with linked buckets, and Lisp can't see the links. (See (elisp)Creating symbols.) Davis PS - Sorry for the long delay in writing this. -- This product is sold by volume, not by mass. If it appears too dense or too sparse, it is because mass-energy conversion has occurred during shipping.