From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Liang Wang Newsgroups: gmane.emacs.devel Subject: M-x list-tags gets [No match] Date: Tue, 27 Sep 2011 22:27:54 +0800 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: dough.gmane.org 1317133688 8335 80.91.229.12 (27 Sep 2011 14:28:08 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 27 Sep 2011 14:28:08 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Sep 27 16:28:05 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1R8Ydg-0005ig-Ac for ged-emacs-devel@m.gmane.org; Tue, 27 Sep 2011 16:28:04 +0200 Original-Received: from localhost ([::1]:40570 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8Ydf-0002yQ-SV for ged-emacs-devel@m.gmane.org; Tue, 27 Sep 2011 10:28:03 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:38262) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8Ydd-0002y8-4H for emacs-devel@gnu.org; Tue, 27 Sep 2011 10:28:02 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R8YdY-00024n-I6 for emacs-devel@gnu.org; Tue, 27 Sep 2011 10:28:01 -0400 Original-Received: from mail-wy0-f169.google.com ([74.125.82.169]:45355) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8YdY-00024T-DV for emacs-devel@gnu.org; Tue, 27 Sep 2011 10:27:56 -0400 Original-Received: by wyf22 with SMTP id 22so7652237wyf.0 for ; Tue, 27 Sep 2011 07:27:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=xN0fBO00nN1D6rImnBm2XopCtQSGciLaGLZFRnYYvs8=; b=E6KxckaeRWI/7GzhRTAMJmUyD7gJn2knTU+eXrAA0oXlMGyHlhnZbVRF8hLzfOH68T LO217pAoAKMNzFZyel/ZOFxUz/sORjObHaCsC26pBNPpkk5HKMqXfOJpTmgV76k3vJKY s6aSd0Tqt16S3a34IPKopTheK68pUDpcSp8zo= Original-Received: by 10.216.132.198 with SMTP id o48mr3235533wei.7.1317133674694; Tue, 27 Sep 2011 07:27:54 -0700 (PDT) Original-Received: by 10.216.5.65 with HTTP; Tue, 27 Sep 2011 07:27:54 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 74.125.82.169 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:144411 Archived-At: Hi, When I run M-x list-tags TAB, I get [No match]. Here is the way I create TAGS file for Emacs source tree. $ cd src $ etags -o TAGS.sub *.[hc] $ cd ../lisp $ etags -o TAGS.sub *.el $ cd .. $ etags -i src/TAGS.sub -i lisp/TAGS.sub If I create TAGS file in the following way, M-x list-tags TAB works fine. $ etags src/*.[hc] lisp/*.el Is the first way I create TAGS file wrong? Thanks, Liang.