From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Disabling mouse input Date: Sat, 02 Nov 2024 18:59:25 +0200 Message-ID: <86fro9y3ki.fsf@gnu.org> References: <86sesaytjn.fsf@gnu.org> <4p6cs2adzzqihjdustvlklr3ykrrz7eq7rtz2ciywcyevgmoej@klyfgnsjtnti> <86h68py3zy.fsf@gnu.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="19581"; mail-complaints-to="usenet@ciao.gmane.io" Cc: dradetsky@gmail.com, luangruo@yahoo.com, emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Nov 02 18:00:42 2024 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1t7HUQ-0004wD-6g for ged-emacs-devel@m.gmane-mx.org; Sat, 02 Nov 2024 18:00:42 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1t7HTm-0006Kh-FD; Sat, 02 Nov 2024 13:00:02 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t7HTj-0006Jr-A0 for emacs-devel@gnu.org; Sat, 02 Nov 2024 13:00:00 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t7HTj-0001cB-0r; Sat, 02 Nov 2024 12:59:59 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=bIhLXeZmOmAVnEGcUbK0t6NOsQAJhySs8AqN5GOyBKk=; b=BV47ikyPicNi FaZyiOs8iE8LhhbMvlmuvt9pZwPsR3LJzBTWoBaPdcHP08dpPSXnEgmfZ4ggwB/jSddeJH7LgbJgW cK1j/HPnqu3lAb12P9N9TbuOb05RCIZCufvHqUTmg+SM+EyGdtHdraGtI7tnXCzUt2XmoUnrBaep7 cYjqlzKmrNWLFtfgZ3RIKjB7ezozUOn1c15Kf8okvpMZQ2AE7r25TyqUUgRUDafYQDzmJ1R7WmhGg IHUDVitVCkvgIiXxsyVZp30KdYuItExkk5PrOZ5aHMh9BE4ChEsW+ohN4O+qcHyFGDN71cbfxmA0R LfGmor1GSqPAt8vwmarJRw==; In-Reply-To: (message from Stefan Monnier on Sat, 02 Nov 2024 12:54:22 -0400) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:325021 Archived-At: > From: Stefan Monnier > Cc: dradetsky@gmail.com, luangruo@yahoo.com, emacs-devel@gnu.org > Date: Sat, 02 Nov 2024 12:54:22 -0400 > > >> (define-key input-decode-map [wheel-down] (lambda (_prompt) [])) > >> (define-key input-decode-map [wheel-up] (lambda (_prompt) [])) > >> (define-key input-decode-map [mouse-1] (lambda (_prompt) [])) > >> (define-key input-decode-map [mouse-2] (lambda (_prompt) [])) > >> (define-key input-decode-map [mouse-3] (lambda (_prompt) [])) > > > > Wouldn't that cause Emacs to think input events arrived, when some > > mouse events are read by the socket hook? > > I think the answer is yes, tho I'm not sure what you mean by "think > input events arrived" nor why you seem to think that would be a problem. I mentioned that in my original comments: stuff like while-no-input will think some input arrived, which is not what the users would want, when this knob is used. Which is why I prefer to prevent inserting the mouse events into the input queue to begin with.