From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: tags for functions Date: Wed, 28 Jan 2009 20:43:33 -0500 Message-ID: References: <867i4pemv5.fsf@lifelogs.com> <86y6x49un4.fsf@lifelogs.com> <86ljt39ysz.fsf@lifelogs.com> <87tz7oxodr.fsf@jurta.org> <86mydd3kzv.fsf@lifelogs.com> <87pri9k64b.fsf@jurta.org> <86ljsw252p.fsf@lifelogs.com> <87hc3kfgb8.fsf@jurta.org> <86r62ne3aq.fsf@lifelogs.com> <86bptrdv4f.fsf@lifelogs.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1233193434 21355 80.91.229.12 (29 Jan 2009 01:43:54 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 29 Jan 2009 01:43:54 +0000 (UTC) Cc: emacs-devel@gnu.org To: Ted Zlatanov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jan 29 02:45:08 2009 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 1LSLxq-0001Hb-IO for ged-emacs-devel@m.gmane.org; Thu, 29 Jan 2009 02:45:06 +0100 Original-Received: from localhost ([127.0.0.1]:51849 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LSLwX-0006BP-Sz for ged-emacs-devel@m.gmane.org; Wed, 28 Jan 2009 20:43:45 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LSLwR-00067e-94 for emacs-devel@gnu.org; Wed, 28 Jan 2009 20:43:39 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LSLwQ-00065P-4Z for emacs-devel@gnu.org; Wed, 28 Jan 2009 20:43:38 -0500 Original-Received: from [199.232.76.173] (port=50415 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LSLwO-00064V-Bk for emacs-devel@gnu.org; Wed, 28 Jan 2009 20:43:36 -0500 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.182]:48628) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LSLwN-0007eW-BU for emacs-devel@gnu.org; Wed, 28 Jan 2009 20:43:35 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AhIFAHKYgEnO+LLC/2dsb2JhbACBbsk+hUcGgjw X-IronPort-AV: E=Sophos;i="4.37,340,1231131600"; d="scan'208";a="32957751" Original-Received: from 206-248-178-194.dsl.teksavvy.com (HELO pastel.home) ([206.248.178.194]) by ironport2-out.teksavvy.com with ESMTP; 28 Jan 2009 20:43:33 -0500 Original-Received: by pastel.home (Postfix, from userid 20848) id A278C8120; Wed, 28 Jan 2009 20:43:33 -0500 (EST) In-Reply-To: <86bptrdv4f.fsf@lifelogs.com> (Ted Zlatanov's message of "Wed, 28 Jan 2009 14:38:08 -0600") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. 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:108344 Archived-At: SM> Stefan "who still doesn't know what data we're talking about" > I'm interested in "@keyword" substrings of the docstring that indicate > the keywords for a particular function. The goals are to: > - list all keywords > - list all keywords for a function > - list all functions for a keyword Not know what that data would be used for, it's hard to give you good feedback. > Juri's solution is slow, as Lennart noted, due to the `documentation' > issue you mentioned. I said I think a defun-after-hook would be the > best solution. Maybe it should be combined with a etc/DOC scan to find > all the existing keywords quickly. In any case, we don't want to collect/store this info all the time: we only want to pay for it when this data is actually used. Stefan