From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Francesco Potorti` Newsgroups: gmane.emacs.devel Subject: Re: etags comma on emacs DEFUNs Date: Wed, 20 Dec 2006 12:37:48 +0100 Message-ID: References: <87ejqv5vx9.fsf@zip.com.au> NNTP-Posting-Host: dough.gmane.org X-Trace: sea.gmane.org 1166614702 15083 80.91.229.10 (20 Dec 2006 11:38:22 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 20 Dec 2006 11:38:22 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Dec 20 12:38:18 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by dough.gmane.org with esmtp (Exim 4.50) id 1Gwzm5-0004wb-Lw for ged-emacs-devel@m.gmane.org; Wed, 20 Dec 2006 12:38:17 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Gwzm5-0006Ih-9f for ged-emacs-devel@m.gmane.org; Wed, 20 Dec 2006 06:38:17 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Gwzls-0006Ic-Vh for emacs-devel@gnu.org; Wed, 20 Dec 2006 06:38:04 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Gwzlq-0006GM-6q for emacs-devel@gnu.org; Wed, 20 Dec 2006 06:38:04 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Gwzlq-0006G9-2o for emacs-devel@gnu.org; Wed, 20 Dec 2006 06:38:02 -0500 Original-Received: from [194.119.192.3] (helo=mx1.isti.cnr.it) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1Gwzlp-0005Ip-Mn for emacs-devel@gnu.org; Wed, 20 Dec 2006 06:38:01 -0500 Original-Received: from conversionlocal.isti.cnr.it by mx.isti.cnr.it (PMDF V6.3-x3 #31251) id <01MAY70MC27KA0UCY3@mx.isti.cnr.it> for emacs-devel@gnu.org; Wed, 20 Dec 2006 12:37:51 +0100 Original-Received: from tucano.isti.cnr.it (tucano.isti.cnr.it [146.48.81.102]) by mx.isti.cnr.it (PMDF V6.3-x3 #31251) with ESMTPS id <01MAY70LKIX8A0UCXF@mx.isti.cnr.it>; Wed, 20 Dec 2006 12:37:49 +0100 Original-Received: from pot by tucano.isti.cnr.it with local (Exim 4.63) (envelope-from ) id 1Gwzlc-0000os-Us; Wed, 20 Dec 2006 12:37:48 +0100 In-reply-to: <87ejqv5vx9.fsf@zip.com.au> Original-To: Kevin Ryde X-INSM-ip-source: 146.48.81.102 Auth Optional-NoAuth X-fingerprint: 4B02 6187 5C03 D6B1 2E31 7666 09DF 2DC9 BE21 6115 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:63987 Archived-At: Bug corrected and probable bug in etags.el. >It looks like etags puts a comma on the end of the lisp name of an >emacs DEFUN. Eg. the foo.c below which is a copy of car-safe from >src/data.c, > > etags foo.c > >creates a TAGS file with (expanding ^? and ^A for the sake of mail), > > foo.c,44 > DEFUN ("car-safe", Fcar_safe,^?car-safe,^A1,0 >where I didn't expect to see a "," on the end. Seems harmless most of >the time because you can type car-safe and M-. will jump to a partial >match, but it's not intended is it? Corrected. Where the length was corrected for DEFUN, a spurious line (a leftover of old code) undid the change. I just checked in the correct version. Thanks for spotting this.