From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chong Yidong Newsgroups: gmane.emacs.devel Subject: Re: CEDET branch Date: Sun, 13 Sep 2009 12:19:17 -0400 Message-ID: <87tyz67r7e.fsf@cyd.mit.edu> References: <871vmgyhy2.fsf@stupidchicken.com> <8763bquvfh.fsf@stupidchicken.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1252858695 25660 80.91.229.12 (13 Sep 2009 16:18:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 13 Sep 2009 16:18:15 +0000 (UTC) Cc: emacs-devel@gnu.org To: David Engster Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Sep 13 18:18: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 1Mmrm8-0001BP-Tg for ged-emacs-devel@m.gmane.org; Sun, 13 Sep 2009 18:18:05 +0200 Original-Received: from localhost ([127.0.0.1]:35107 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mmrm7-0000Ch-S2 for ged-emacs-devel@m.gmane.org; Sun, 13 Sep 2009 12:18:03 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mmrm2-0000BU-1e for emacs-devel@gnu.org; Sun, 13 Sep 2009 12:17:58 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mmrlw-00008q-0x for emacs-devel@gnu.org; Sun, 13 Sep 2009 12:17:57 -0400 Original-Received: from [199.232.76.173] (port=52368 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mmrlv-00008i-Np for emacs-devel@gnu.org; Sun, 13 Sep 2009 12:17:51 -0400 Original-Received: from cyd.mit.edu ([18.115.2.24]:38066) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mmrlv-0003vD-HI for emacs-devel@gnu.org; Sun, 13 Sep 2009 12:17:51 -0400 Original-Received: by cyd.mit.edu (Postfix, from userid 1000) id AD37957E26C; Sun, 13 Sep 2009 12:19:17 -0400 (EDT) In-Reply-To: (David Engster's message of "Fri, 11 Sep 2009 12:41:18 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (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:115273 Archived-At: David Engster writes: >> The semantic-find-tags-by-class macro should be byte-compiled in-place >> by any file that requires it. Can you provide a recipe? > > I guess a > > (eval-when-compile (require 'semantic/find)) > > in semantic/analyze/fcn.el should do the trick? Thanks, I've checked in a fix. > I also noticed another error due to removed autoloads: > 'semantic-tag-write-list-slot-value' isn't defined when the database is > saved upon exiting Emacs. An eval-when-compile won't work here, since > this is actually a slot value which is called from eieio. So I guess it > either needs an autoload, or 'semantic/tag-write' is required in > semantic/db-file.el ? Thanks, I've autoloaded semantic-tag-write-list-slot-value.