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 & find-tag Date: Thu, 01 Mar 2007 08:22:19 +0100 Message-ID: References: <22920027.396161172706718894.JavaMail.www@wwinf4004> NNTP-Posting-Host: lo.gmane.org X-Trace: sea.gmane.org 1172733782 13927 80.91.229.12 (1 Mar 2007 07:23:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 1 Mar 2007 07:23:02 +0000 (UTC) Cc: "Emacs Dev \[emacs-devel\]" To: alinsoar@voila.fr Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Mar 01 08:22:53 2007 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 1HMfcq-0007oo-IS for ged-emacs-devel@m.gmane.org; Thu, 01 Mar 2007 08:22:52 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HMfcr-0005fX-Sd for ged-emacs-devel@m.gmane.org; Thu, 01 Mar 2007 02:22:53 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HMfce-0005eu-Kk for emacs-devel@gnu.org; Thu, 01 Mar 2007 02:22:40 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HMfcd-0005dE-1h for emacs-devel@gnu.org; Thu, 01 Mar 2007 02:22:40 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HMfcc-0005d9-WA for emacs-devel@gnu.org; Thu, 01 Mar 2007 02:22:39 -0500 Original-Received: from mx2.isti.cnr.it ([194.119.192.4]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1HMfcb-0003Md-58 for emacs-devel@gnu.org; Thu, 01 Mar 2007 02:22:38 -0500 Original-Received: from conversionlocal.isti.cnr.it by mx.isti.cnr.it (PMDF V6.3-x3 #31251) id <01MDP4SD6Y9CAR2YYG@mx.isti.cnr.it> for emacs-devel@gnu.org; Thu, 01 Mar 2007 08:22:20 +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 <01MDP4SCNGZSAPZ639@mx.isti.cnr.it>; Thu, 01 Mar 2007 08:22:20 +0100 Original-Received: from pot by tucano.isti.cnr.it with local (Exim 4.63) (envelope-from ) id 1HMfcJ-000553-IJ; Thu, 01 Mar 2007 08:22:19 +0100 In-reply-to: <22920027.396161172706718894.JavaMail.www@wwinf4004> X-INSM-ip-source: 146.48.81.102 Auth Optional-NoAuth X-fingerprint: 4B02 6187 5C03 D6B1 2E31 7666 09DF 2DC9 BE21 6115 X-detected-kernel: OpenVMS 7.2 (Multinet 4.3-4.4 stack) 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:67106 Archived-At: >Do you consider normal that M-. > >jumps in order to the following definitions (of function or variable) using C-u as prefix : > >find-tag-hook >find-tag-default-function > >but not to... find-tag? No. It should jump to find-tag first, then to the other ones. In fact, I cannot reproduce the behaviour you describe. >I opened TAGS file, and was not there. Which etags did you use? I can see the tag whith either new or old etags. >Still I had created the TAGS by >find -name *.[ch] -o -name *.el | xargs etags - In this particular case this works, but don't do that in general, because xargs may make two calls to etags as the consequence of too many arguments, and in this case you would get a second TAGS overwriting the first one without any warnings. For Emacs, just do `make tags'.