From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: A Soare Newsgroups: gmane.emacs.help Subject: Re: emac in large projects Date: Tue, 20 Feb 2007 22:42:35 +0100 (CET) Message-ID: <20238249.83421172007755597.JavaMail.www@wwinf4102> 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 1172007788 23135 80.91.229.12 (20 Feb 2007 21:43:08 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 20 Feb 2007 21:43:08 +0000 (UTC) To: "Emacs Help [help-gnu-emacs]" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Feb 20 22:43:01 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HJclA-0000nM-4e for geh-help-gnu-emacs@m.gmane.org; Tue, 20 Feb 2007 22:42:52 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HJcl9-0004Z4-OG for geh-help-gnu-emacs@m.gmane.org; Tue, 20 Feb 2007 16:42:51 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HJcky-0004Yz-6L for help-gnu-emacs@gnu.org; Tue, 20 Feb 2007 16:42:40 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HJckv-0004Yn-L4 for help-gnu-emacs@gnu.org; Tue, 20 Feb 2007 16:42:38 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HJckv-0004Yk-Ij for help-gnu-emacs@gnu.org; Tue, 20 Feb 2007 16:42:37 -0500 Original-Received: from smtp2.voila.fr ([193.252.22.175] helo=smtp1.voila.fr) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HJckv-0006sb-5U for help-gnu-emacs@gnu.org; Tue, 20 Feb 2007 16:42:37 -0500 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf4101.voila.fr (SMTP Server) with ESMTP id A03ED1C00376 for ; Tue, 20 Feb 2007 22:42:35 +0100 (CET) Original-Received: from wwinf4102 (wwinf4102 [172.22.152.29]) by mwinf4101.voila.fr (SMTP Server) with ESMTP id 950301C00359 for ; Tue, 20 Feb 2007 22:42:35 +0100 (CET) X-ME-UUID: 20070220214235610.950301C00359@mwinf4101.voila.fr X-Originating-IP: [86.107.96.49] X-Wum-Nature: EMAIL-NATURE X-WUM-FROM: |~| X-WUM-TO: |~| X-WUM-REPLYTO: |~| X-detected-kernel: Linux 2.4-2.6 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:41360 Archived-At: You must create a TAGS file first of all, in which one keeps the symbols from your project. For example, to create a file TAGS of all symbols of EMACS you can use from a Shell # find -name *.el -o -name *.[ch] | xargs etags (see the documentation from find, xargs, etags) II. From Emacs: M-x visit-tags-table RET then M-. for the first occurence of a definition of a symbol or C-u 1 M-. for the next occurences, etc. And for more see the doc from emacs info, node TAGS.