From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.devel Subject: Re: xref-find-matches and stuff Date: Thu, 14 May 2015 12:13:19 +0200 Message-ID: <5554753F.2020707@gmx.at> References: <5546DD4A.2080709@yandex.ru> <87r3qvnld1.fsf@gmail.com> <5548E08A.4090305@yandex.ru> <87mw1jndul.fsf@gmail.com> <554964CE.3040809@yandex.ru> <87oalxn756.fsf@gmail.com> <554AAD41.6060506@yandex.ru> <87vbg4lgn6.fsf@gmail.com> <554CB069.8090002@yandex.ru> <554F4F91.6020604@gmx.at> <837fsgo5hz.fsf@gnu.org> <55507FAD.7020704@gmx.at> <83egmnm9wx.fsf@gnu.org> <5551C983.5000705@gmx.at> <83mw19lqli.fsf@gnu.org> <5552FE3E.9040300@gmx.at> <83fv70jsjy.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1431598468 30476 80.91.229.3 (14 May 2015 10:14:28 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 14 May 2015 10:14:28 +0000 (UTC) Cc: pot@gnu.org, emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu May 14 12:14:14 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 1Ysq9d-0003l9-T1 for ged-emacs-devel@m.gmane.org; Thu, 14 May 2015 12:14:14 +0200 Original-Received: from localhost ([::1]:53585 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ysq9d-0001x7-1l for ged-emacs-devel@m.gmane.org; Thu, 14 May 2015 06:14:13 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:42670) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ysq92-0001Tc-F3 for emacs-devel@gnu.org; Thu, 14 May 2015 06:13:37 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ysq90-0002Wc-DJ for emacs-devel@gnu.org; Thu, 14 May 2015 06:13:36 -0400 Original-Received: from mout.gmx.net ([212.227.17.20]:63626) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ysq8u-0002Jj-Gm; Thu, 14 May 2015 06:13:28 -0400 Original-Received: from [178.190.18.121] ([178.190.18.121]) by mail.gmx.com (mrgmx101) with ESMTPSA (Nemesis) id 0M7TQZ-1Z5oSP0Od5-00xJKR; Thu, 14 May 2015 12:13:26 +0200 In-Reply-To: <83fv70jsjy.fsf@gnu.org> X-Provags-ID: V03:K0:OQ/4aX12h6vBE98ejxYlBHkqZAzuFDCLW98XZ/ysSFUMKeWW55a 1jHTMTMH1YiQbkh2fSFGu/tS5AyM6NHxTE68oyH2/r2lvVGstLWdi0iyebprf7G/I8pui4E IaAORg+1RItZop+heg3r2nkAIOmQ9zDuMiqkLZrhg6LfEQ9QxokZ457UM9FAR9NGAGkxmoj psV6V21EN7avTTtu+qnnA== X-UI-Out-Filterresults: notjunk:1; X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [generic] X-Received-From: 212.227.17.20 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:186491 Archived-At: >> .../globals.h >> #define focus_follows_mouse >> bool f_focus_follows_mouse; >> >> How am I supposed to proceed from here? > > It depends on what you mean by "proceed". I understand that you want > to see the corresponding DEFVAR_* line, is that right? Right. > Your wish has been granted in commit 8d69f38. Thank you very much. >> That it goes to the definition of Vmake_pointer_invisible in frame.c >> (and never to that in globals.h). > > It will now offer both. (I don't think I agree with that "never" > part, because it is important, and exactly what the user wants, in > some use cases, although evidently not in yours.) OK with me (as long as the frame.c definition comes first). I never worked with 'make TAGS' before. Currently it's some sort of pain to use for me, probably because of this ## FIXME? In out-of-tree builds, should TAGS be generated in srcdir? (line 601 of Makefile.in). Couldn't I direct it somehow to create the TAGS file in the src directory? Also, is there a way to tell it to not make emacs itself, that is, just build the TAGS files and do nothing else? OTOH what would my corresponding --regex argument to etags be now when calling etags via shell-command? martin