From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Navy Cheng Newsgroups: gmane.emacs.help Subject: How can I locate a struct's defination? Date: Mon, 3 Aug 2015 09:50:18 +0800 Message-ID: <20150803015018.GA11829@debian> Reply-To: Navy Cheng NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1438566681 21899 80.91.229.3 (3 Aug 2015 01:51:21 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 3 Aug 2015 01:51:21 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Aug 03 03:51:13 2015 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 1ZM4uG-0002ux-6j for geh-help-gnu-emacs@m.gmane.org; Mon, 03 Aug 2015 03:51:12 +0200 Original-Received: from localhost ([::1]:57234 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZM4uF-0000R5-9p for geh-help-gnu-emacs@m.gmane.org; Sun, 02 Aug 2015 21:51:11 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:52433) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZM4u5-0000Qo-Fq for help-gnu-emacs@gnu.org; Sun, 02 Aug 2015 21:51:02 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZM4u0-0005s3-Fm for help-gnu-emacs@gnu.org; Sun, 02 Aug 2015 21:51:01 -0400 Original-Received: from m15-113.126.com ([220.181.15.113]:36663) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZM4tz-0005gi-Kt for help-gnu-emacs@gnu.org; Sun, 02 Aug 2015 21:50:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=126.com; s=s110527; h=Date:From:Subject:Message-ID:MIME-Version; bh=uQ8zr ouY8S/k2ucwQ2k7EQyT+dgPg5ySGC/D9UXf1pg=; b=ePUmlCNLV6to68EYNM/z3 4yzgiT5aKlUkJugl5QcuXZsfUjS2vUeNSFp4oBAcsIifVw0CWzxVZ3eoDhxYrr6S 8O2MbdtvOQZYDQNFolAFyiB/Am/ux2EeqARROTpGfXctRjqTWmwAuOFozQO8o8sM fhPK9VQomSB0d2YMqaXx/k= Original-Received: from localhost (unknown [220.248.62.198]) by smtp3 (Coremail) with SMTP id DcmowADn1HzkyL5VroEYAQ--.63431S3; Mon, 03 Aug 2015 09:50:30 +0800 (CST) Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-CM-TRANSID: DcmowADn1HzkyL5VroEYAQ--.63431S3 X-Coremail-Antispam: 1Uf129KBjDUn29KB7ZKAUJUUUUU529EdanIXcx71UUUUU7v73 VFW2AGmfu7bjvjm3AaLaJ3UbIYCTnIWIevJa73UjIFyTuYvjxU29mRUUUUU X-Originating-IP: [220.248.62.198] X-CM-SenderInfo: 5qdy5ubk6rjloofrz/1tbi0ABLDVUJSnhbjwAAss X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 220.181.15.113 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:106217 Archived-At: Hi, I use emacs and tags to read kernel source. The tags is create by make tags in the kernel source tree. When I want to find a struct's defination, something goes wrong. For example: when I find *dentry* , the first result is: struct rchan_buf { ... struct dentry *dentry; /* channel file dentr ... } There are so many items like this before I find struct dentry { .... } How can I find the struct's defination directly? Thanks.