From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Drew Adams Newsgroups: gmane.emacs.devel Subject: RE: Emacs rewrite in a maintainable language Date: Sun, 11 Oct 2015 16:12:24 -0700 (PDT) Message-ID: References: <561A19AB.5060001@cumego.com> <87612des3y.fsf@fencepost.gnu.org> <87pp0lrrlo.fsf@mbork.pl> <87oag5rpz6.fsf@mbork.pl> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1444605192 26221 80.91.229.3 (11 Oct 2015 23:13:12 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 11 Oct 2015 23:13:12 +0000 (UTC) To: Marcin Borkowski , emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 12 01:13:00 2015 Return-path: Envelope-to: ged-emacs-devel@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 1ZlPnY-0004mv-7l for ged-emacs-devel@m.gmane.org; Mon, 12 Oct 2015 01:13:00 +0200 Original-Received: from localhost ([::1]:50095 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlPnX-00023r-Ll for ged-emacs-devel@m.gmane.org; Sun, 11 Oct 2015 19:12:59 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:37724) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlPnB-00022g-3i for emacs-devel@gnu.org; Sun, 11 Oct 2015 19:12:37 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZlPn7-0002bB-2x for emacs-devel@gnu.org; Sun, 11 Oct 2015 19:12:37 -0400 Original-Received: from aserp1040.oracle.com ([141.146.126.69]:33120) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlPn6-0002b2-U0 for emacs-devel@gnu.org; Sun, 11 Oct 2015 19:12:33 -0400 Original-Received: from userv0021.oracle.com (userv0021.oracle.com [156.151.31.71]) by aserp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id t9BNCSA1028129 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sun, 11 Oct 2015 23:12:28 GMT Original-Received: from aserv0121.oracle.com (aserv0121.oracle.com [141.146.126.235]) by userv0021.oracle.com (8.13.8/8.13.8) with ESMTP id t9BNCR4W024130 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Sun, 11 Oct 2015 23:12:28 GMT Original-Received: from abhmp0011.oracle.com (abhmp0011.oracle.com [141.146.116.17]) by aserv0121.oracle.com (8.13.8/8.13.8) with ESMTP id t9BNCR10015088; Sun, 11 Oct 2015 23:12:27 GMT In-Reply-To: <87oag5rpz6.fsf@mbork.pl> X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.9 (901082) [OL 12.0.6691.5000 (x86)] X-Source-IP: userv0021.oracle.com [156.151.31.71] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 141.146.126.69 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:191292 Archived-At: > And btw: is there a way to search for functions according to the > filename they are defined in, possibly using a regex, so that one > could search e.g. for functions defined in C by specifying "\.c$"? > (Drew? Icicles?) If you create a TAGS file for stuff defined only in C files then sure. Vanilla `find-tag' can do that (as well as similar Icicles commands). (You could also use `icicle-find-file', matching both the file name (e.g. .*\.c) and a file-content regexp that matches Emacs-Lisp function definitions in the C source files.)