From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tom Tromey Newsgroups: gmane.emacs.devel Subject: Re: find-tag and partial completion mode -- Francisco, urgent! Date: Wed, 02 May 2007 14:02:59 -0600 Message-ID: References: <3434050.9641178103774477.JavaMail.www@wwinf4204> Reply-To: tromey@redhat.com NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1178137339 6086 80.91.229.12 (2 May 2007 20:22:19 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 2 May 2007 20:22:19 +0000 (UTC) Cc: alinsoar@voila.fr, pot@gnu.org, rms@gnu.org, emacs-devel@gnu.org To: Glenn Morris Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed May 02 22:22:17 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 1HjLL6-0004E1-9L for ged-emacs-devel@m.gmane.org; Wed, 02 May 2007 22:22:16 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HjLRX-0004ZF-IL for ged-emacs-devel@m.gmane.org; Wed, 02 May 2007 16:28:55 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HjLRH-00048r-SF for emacs-devel@gnu.org; Wed, 02 May 2007 16:28:40 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HjLRE-00045N-Lw for emacs-devel@gnu.org; Wed, 02 May 2007 16:28:36 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HjLRC-00044y-7h for emacs-devel@gnu.org; Wed, 02 May 2007 16:28:34 -0400 Original-Received: from mx1.redhat.com ([66.187.233.31]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HjLKi-0004Yp-4g; Wed, 02 May 2007 16:21:52 -0400 Original-Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.1/8.13.1) with ESMTP id l42KLi1F008176; Wed, 2 May 2007 16:21:44 -0400 Original-Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [10.11.255.20]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l42KLiHD006981; Wed, 2 May 2007 16:21:44 -0400 Original-Received: from opsy.redhat.com (ton.toronto.redhat.com [172.16.14.15]) by pobox.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l42KLgUk020262; Wed, 2 May 2007 16:21:43 -0400 Original-Received: by opsy.redhat.com (Postfix, from userid 500) id 1FF1137808D; Wed, 2 May 2007 14:03:00 -0600 (MDT) X-Attribution: Tom In-Reply-To: (Glenn Morris's message of "Wed\, 02 May 2007 16\:13\:26 -0400") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.95 (gnu/linux) X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) 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:70489 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. GM> The solution is just to not access the TAGS file through a symlink GM> (something which there is no need to do). 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 Tom