From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nick Roberts Newsgroups: gmane.emacs.devel Subject: Re: mouse-1-click-follows-link Date: Sat, 18 Jun 2005 01:34:12 +1200 Message-ID: <17074.53588.930700.298986@farnswood.snap.net.nz> References: <42AEC039.10207@gnu.org> <42B05B37.3070404@gnu.org> <877jgtrxct.fsf@jurta.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1119015268 31312 80.91.229.2 (17 Jun 2005 13:34:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 17 Jun 2005 13:34:28 +0000 (UTC) Cc: emacs-devel@gnu.org, rms@gnu.org, Jason Rumney Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 17 15:34:26 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DjGzH-0001Oq-M2 for ged-emacs-devel@m.gmane.org; Fri, 17 Jun 2005 15:34:23 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DjH4u-0006H0-4Z for ged-emacs-devel@m.gmane.org; Fri, 17 Jun 2005 09:40:12 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DjH12-0004tt-2o for emacs-devel@gnu.org; Fri, 17 Jun 2005 09:36:12 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DjH0y-0004rx-DM for emacs-devel@gnu.org; Fri, 17 Jun 2005 09:36:08 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DjH0y-0004pd-3y for emacs-devel@gnu.org; Fri, 17 Jun 2005 09:36:08 -0400 Original-Received: from [202.37.101.8] (helo=viper.snap.net.nz) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DjGzK-0003Xp-Jl; Fri, 17 Jun 2005 09:34:26 -0400 Original-Received: from farnswood.snap.net.nz (p87-tnt2.snap.net.nz [202.124.108.87]) by viper.snap.net.nz (Postfix) with ESMTP id 2E0EB53C0F4; Sat, 18 Jun 2005 01:32:23 +1200 (NZST) Original-Received: by farnswood.snap.net.nz (Postfix, from userid 501) id 258B162A99; Fri, 17 Jun 2005 14:34:13 +0100 (BST) Original-To: Juri Linkov In-Reply-To: <877jgtrxct.fsf@jurta.org> X-Mailer: VM 7.19 under Emacs 22.0.50.72 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:39015 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:39015 Juri Linkov writes: > > For me, the filename and line number shows the highlight face on > > mouse-over in grep buffers, but none of the line responds to mouse-1. > > The whole line responds to mouse 2. mouse-1-click-follow-links is at its > > default setting of 450, and I am not aware of any other customizations > > that affect this. This must be a bug, I think. > > I'm aware that currently there are too large areas for mouse-1 clicking > in grep buffers. This could be fixed after reaching some consensus. > But not responding to mouse-1 is something that I can't reproduce. > Do you have mouse-1 working in other mouse-1 sensitive buffers > like Info? This is my understanding (I don't think what Jason is seeing is a bug). mouse-1-click-follows-link works where the text has the mouse-face property: (define-key map [follow-link] 'mouse-face) In the compilation buffer this is only over the file and number. In the grep buffer it extends to the first match (or something like that). Where there is no mouse-face property, compile-goto-error works (on mouse-2). Nick