From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: A Soare Newsgroups: gmane.emacs.devel Subject: Re: etags and functions that return structures! Date: Wed, 25 Apr 2007 16:27:17 +0200 (CEST) Message-ID: <11846186.500101177511237965.JavaMail.www@wwinf4004> Reply-To: alinsoar@voila.fr NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1177511253 28198 80.91.229.12 (25 Apr 2007 14:27:33 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 25 Apr 2007 14:27:33 +0000 (UTC) Cc: "Emacs Dev \[emacs-devel\]" To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Apr 25 16:27:29 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 1HgiSu-00080A-Mb for ged-emacs-devel@m.gmane.org; Wed, 25 Apr 2007 16:27:28 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HgiYX-0001Zb-Ei for ged-emacs-devel@m.gmane.org; Wed, 25 Apr 2007 10:33:17 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HgiYU-0001ZW-HV for emacs-devel@gnu.org; Wed, 25 Apr 2007 10:33:14 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HgiYT-0001ZK-2f for emacs-devel@gnu.org; Wed, 25 Apr 2007 10:33:13 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HgiYS-0001ZH-Tw for emacs-devel@gnu.org; Wed, 25 Apr 2007 10:33:12 -0400 Original-Received: from smtp1.voila.fr ([193.252.22.174]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HgiSm-0006PL-Jn; Wed, 25 Apr 2007 10:27:20 -0400 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf4002.voila.fr (SMTP Server) with ESMTP id 0DCD11C002DD; Wed, 25 Apr 2007 16:27:18 +0200 (CEST) Original-Received: from wwinf4004 (wwinf4004 [172.22.157.31]) by mwinf4002.voila.fr (SMTP Server) with ESMTP id EEE521C002A1; Wed, 25 Apr 2007 16:27:17 +0200 (CEST) X-ME-UUID: 20070425142717978.EEE521C002A1@mwinf4002.voila.fr X-Originating-IP: [86.107.96.49] X-Wum-Nature: EMAIL-NATURE X-WUM-FROM: |~| X-WUM-TO: |~| X-WUM-CC: |~| X-WUM-REPLYTO: |~| X-detected-kernel: 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:70098 Archived-At: > > From: A Soare > > Cc: "Emacs Dev [emacs-devel]" > > Date: Tue, 24 Apr 2007 21:04:02 +0200 (CEST) > > > > > > When we have a function that returns a structure with a name S, by searching the name of that structure (S), find-tag does not jump in all cases to structure's definiton, but to a function's definition that returns that structure. > > > > > > I think this depends on the order in which etags sees the struct and > > > the functions. > > > > > > Anyway, when this happens, does "C-u M-." eventually finds the struct > > > definition? > > > > No. It jumps to another function that returns the same structure, even there is the def. of the structure somewhere. > > So you are saying that no matter how many times you press "C-u M-.", > Emacs _never_ gets to the struct definition? If so, please post the > smallest test case you can come up with that shows this problem. > Yes, emacs never touch that point. I can't give example, because I do not have time to analyse the problem. Sorry.