From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Luca Ferrari Newsgroups: gmane.emacs.help Subject: etags not working properly Date: Tue, 27 Aug 2013 08:46:42 +0200 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1377586052 17902 80.91.229.3 (27 Aug 2013 06:47:32 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 27 Aug 2013 06:47:32 +0000 (UTC) To: help-gnu-emacs Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Aug 27 08:47:34 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VED3t-0000Ws-2G for geh-help-gnu-emacs@m.gmane.org; Tue, 27 Aug 2013 08:47:33 +0200 Original-Received: from localhost ([::1]:54434 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VED3s-0002Eu-Np for geh-help-gnu-emacs@m.gmane.org; Tue, 27 Aug 2013 02:47:32 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:52575) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VED3d-0002Bm-3R for help-gnu-emacs@gnu.org; Tue, 27 Aug 2013 02:47:23 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VED3W-0001Ub-Vk for help-gnu-emacs@gnu.org; Tue, 27 Aug 2013 02:47:17 -0400 Original-Received: from mail-wg0-f47.google.com ([74.125.82.47]:56384) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VED3W-0001Sg-PI for help-gnu-emacs@gnu.org; Tue, 27 Aug 2013 02:47:10 -0400 Original-Received: by mail-wg0-f47.google.com with SMTP id j13so3539087wgh.26 for ; Mon, 26 Aug 2013 23:46:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=f98pzpliuflu9ZzcSbCN1tQDLasieBxSttUqDtE8GP0=; b=OXR5zVdRYjQQ3k5Jf6atmY7AB4S5aAEZYKiUJ6/bZ5WUntllzpaQ2dPZj0uJDWQZvI 90+IVdOzzXbuvwPAAj1rO19H+Rq04cQzICDM5knL/ZjdE4VmD7EIHeKL98DSfRYLYiKA vN2a39MTNfn3yFyPivGlhyDt0rCwoYX4fTvw5GpH0qf5Hir8fdxeCUg3rtZaMZgWrj6C KfYtNsexzMX5LihkRywKmtCqX7ZI5RfUZ351f89U/PSs6gcoAaAboZQ1+3Wlhdt6Wv5I 44nG/l3VYb7L+rYXZ++JyMX45/VeKUYlUu9A4A+Rdx+29xf/6qvKgK8bPV3G5ySz53UA sdtw== X-Received: by 10.180.126.9 with SMTP id mu9mr10194062wib.16.1377586002520; Mon, 26 Aug 2013 23:46:42 -0700 (PDT) Original-Received: by 10.194.157.194 with HTTP; Mon, 26 Aug 2013 23:46:42 -0700 (PDT) X-Google-Sender-Auth: kpBZOAtSy2ZZMqj5MOzCGaBFuWQ X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 74.125.82.47 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:93102 Archived-At: Hi all, I'm trying to using etags against a quite larger project, the FreeBSD source tree. What I've done is as follows: cd /usr/src && find . -name '*.[ch]' -print0 | xargs -0 etags After that, if I try to lookup (M-.) any tag, even the simpler and common one, I got screwed: etags points me to another wrong location or does not point me anywhere. For instance, "struct vmspace" is not found, "struct vnode" points me to provnode, "struct rusage" points me to a completely different #define, and so on. Am I indexing the source tree in the wrong way? I'm using emacs 24.3.1 with the associated etags. Thanks, Luca