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: find-tag and partial completion mode -- Francisco, urgent! Date: Wed, 2 May 2007 22:26:24 +0200 (CEST) Message-ID: <23806997.691091178137584634.JavaMail.www@wwinf4106> 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 1178137593 6998 80.91.229.12 (2 May 2007 20:26:33 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 2 May 2007 20:26:33 +0000 (UTC) Cc: "Emacs Dev \[emacs-devel\]" To: tromey@redhat.com Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed May 02 22:26:32 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 1HjLPE-0005XB-7V for ged-emacs-devel@m.gmane.org; Wed, 02 May 2007 22:26:32 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HjLVf-000769-BU for ged-emacs-devel@m.gmane.org; Wed, 02 May 2007 16:33:11 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HjLVb-000764-VC for emacs-devel@gnu.org; Wed, 02 May 2007 16:33:07 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HjLVZ-00075s-Ju for emacs-devel@gnu.org; Wed, 02 May 2007 16:33:06 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HjLVZ-00075p-E6 for emacs-devel@gnu.org; Wed, 02 May 2007 16:33:05 -0400 Original-Received: from smtp2.voila.fr ([193.252.22.175] helo=smtp1.voila.fr) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HjLP7-00059c-6r for emacs-devel@gnu.org; Wed, 02 May 2007 16:26:25 -0400 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf4109.voila.fr (SMTP Server) with ESMTP id AADCE1C00331; Wed, 2 May 2007 22:26:24 +0200 (CEST) Original-Received: from wwinf4106 (wwinf4106 [172.22.152.33]) by mwinf4109.voila.fr (SMTP Server) with ESMTP id 9D4CA1C00363; Wed, 2 May 2007 22:26:24 +0200 (CEST) X-ME-UUID: 20070502202624644.9D4CA1C00363@mwinf4109.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:70490 Archived-At: > >>>>> "GM" == Glenn Morris writes: > > >> in TAGS there is a line > >> ../lwlib//TAGS,include > >> and from here the error was born. > > GM> The "issue" is just that if you have a file which contains a line > GM> like: > GM> include ../foo > GM> and you access the file through a symlink from a different directory, > GM> then ../foo (probably) does not exist. That is. True. > > GM> The solution is just to not access the TAGS file through a symlink > GM> (something which there is no need to do). Or to write in TAGS file the complete path, not a relative path. > > The original poster's problem can be solved by using the etags -i > feature instead of making a symlink. I.e., rather than: > > ln -s src/TAGS TAGS > > use > > etags -i src/TAGS > ok.