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: Blinking Cursor (was Re: Menu again.) Date: Sat, 26 Mar 2005 15:40:41 +1200 Message-ID: <16964.55737.935757.729453@farnswood.snap.net.nz> References: <200503241500.j2OF08727332@raven.dms.auburn.edu> <200503241555.j2OFtgu28133@raven.dms.auburn.edu> <16964.48842.86308.866534@farnswood.snap.net.nz> <200503260215.j2Q2FcH14271@raven.dms.auburn.edu> 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 1111805264 9468 80.91.229.2 (26 Mar 2005 02:47:44 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 26 Mar 2005 02:47:44 +0000 (UTC) Cc: storm@cua.dk, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Mar 26 03:47:43 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DF1KF-0002h5-Vl for ged-emacs-devel@m.gmane.org; Sat, 26 Mar 2005 03:47:02 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DF1Zr-0004I7-5s for ged-emacs-devel@m.gmane.org; Fri, 25 Mar 2005 22:03:07 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DF1WN-00046D-OO for emacs-devel@gnu.org; Fri, 25 Mar 2005 21:59:33 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DF1Vz-0003vE-TN for emacs-devel@gnu.org; Fri, 25 Mar 2005 21:59:09 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DF1Vz-0003uQ-EL for emacs-devel@gnu.org; Fri, 25 Mar 2005 21:59:07 -0500 Original-Received: from [202.37.101.8] (helo=viper.snap.net.nz) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DF1F6-0007Q6-6a for emacs-devel@gnu.org; Fri, 25 Mar 2005 21:41:40 -0500 Original-Received: from farnswood.snap.net.nz (p208-tnt2.snap.net.nz [202.124.108.208]) by viper.snap.net.nz (Postfix) with ESMTP id 8B8EF4AA69D; Sat, 26 Mar 2005 14:41:38 +1200 (NZST) Original-Received: by farnswood.snap.net.nz (Postfix, from userid 501) id B2A6861D5E; Sat, 26 Mar 2005 03:40:42 +0000 (GMT) Original-To: Luc Teirlinck In-Reply-To: <200503260215.j2Q2FcH14271@raven.dms.auburn.edu> X-Mailer: VM 7.19 under Emacs 22.0.50.2 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 X-MailScanner-To: ged-emacs-devel@m.gmane.org Xref: news.gmane.org gmane.emacs.devel:35188 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:35188 > ...mouse-3 would not help them, because they would need to read the docs > before finding out about it. No but it might help those who have already read the docs. > Moreover, mouse-3 is already taken for other purposes. Not to give in (too) easily: (let ((click-posn (posn-point (event-start click))) ;; Don't let a subsequent kill command append to this one: ;; prevent setting this-command to kill-region. (this-command this-command)) (if (and (not mark-active) (eq (point) click-posn)) (blink-cursor-mode)) What does it interfere with now? Nick