From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Peter Dyballa Newsgroups: gmane.emacs.help Subject: Re: mouse-2 event in Emacs 23.60.1 - ignored? Date: Wed, 2 Jul 2008 20:47:49 +0200 Message-ID: <659616C1-4552-4D3E-9B64-B28C338AC8E5@Web.DE> References: <1f1302c2-282e-491a-964b-c31dab22794e@q24g2000prf.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v753.1) Content-Type: text/plain; charset=WINDOWS-1252; delsp=yes; format=flowed Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1215024502 20270 80.91.229.12 (2 Jul 2008 18:48:22 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 2 Jul 2008 18:48:22 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: philkime Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jul 02 20:49:07 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KE7O7-0000UR-EK for geh-help-gnu-emacs@m.gmane.org; Wed, 02 Jul 2008 20:49:07 +0200 Original-Received: from localhost ([127.0.0.1]:38762 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KE7NG-0007Zi-Vm for geh-help-gnu-emacs@m.gmane.org; Wed, 02 Jul 2008 14:48:15 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KE7My-0007ZJ-QI for help-gnu-emacs@gnu.org; Wed, 02 Jul 2008 14:47:56 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KE7Mv-0007Z3-TU for help-gnu-emacs@gnu.org; Wed, 02 Jul 2008 14:47:55 -0400 Original-Received: from [199.232.76.173] (port=34084 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KE7Mv-0007Z0-L0 for help-gnu-emacs@gnu.org; Wed, 02 Jul 2008 14:47:53 -0400 Original-Received: from fmmailgate01.web.de ([217.72.192.221]:58173) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KE7Mv-0003n8-7K for help-gnu-emacs@gnu.org; Wed, 02 Jul 2008 14:47:53 -0400 Original-Received: from smtp06.web.de (fmsmtp06.dlan.cinetic.de [172.20.5.172]) by fmmailgate01.web.de (Postfix) with ESMTP id 08DC8E62335E; Wed, 2 Jul 2008 20:47:52 +0200 (CEST) Original-Received: from [91.35.201.152] (helo=[192.168.1.2]) by smtp06.web.de with asmtp (TLSv1:AES128-SHA:128) (WEB.DE 4.109 #226) id 1KE7Ms-0006Xz-00; Wed, 02 Jul 2008 20:47:50 +0200 In-Reply-To: <1f1302c2-282e-491a-964b-c31dab22794e@q24g2000prf.googlegroups.com> X-Mailer: Apple Mail (2.753.1) X-Sender: Peter_Dyballa@web.de X-Provags-ID: V01U2FsdGVkX1+/fZTxIDma09fXEO3DDxtYbFZErIL9Qw3oQOtS VBPSfOugsPGKbVv9sK+TgO01Yg5lr56zgurNHBJodgSy7xmppZ ky0IE0bnD8hg8N28HOcg== X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:55203 Archived-At: Am 02.07.2008 um 06:46 schrieb philkime: > I can't get Emacs 23.60.1 on OSX (Emacs.app) to recognise mouse-2 > events. When you're really writing on the Cocoa port, then it might be better =20= to write to this list: _____________________________________________________________ MacOSX-Emacs mailing list MacOSX-Emacs@email.esm.psu.edu http://email.esm.psu.edu/mailman/listinfo/macosx-emacs List Archives: http://dir.gmane.org/gmane.emacs.macintosh.osx There were already reports on this effect. Here is an eMail I saved: > Rodney Sparapani wrote: > > >> Hi Adrian: >> Great work! I re-discovered one bug and then I found the =20 >> solution. See >> http://sourceforge.net/tracker/index.php?=20 >> func=3Ddetail&aid=3D1867278&group_id=3D148174&atid=3D770754 The short = =20 >> version is wheel mouse and 2-finger scrolling don't work. However, =20= >> the solution is simple: >> ;; Enable wheelmouse support by default >> (require 'mwheel) >> ;;Define the mouse scroll wheel >> (defun up-slightly () (interactive) (scroll-up 5)) >> (defun down-slightly () (interactive) (scroll-down 5)) >> (global-set-key [mouse-4] 'down-slightly) >> (global-set-key [mouse-5] 'up-slightly) >> ;;Support for scrolling Griffin powermate >> (global-set-key [wheel-down] 'up-slightly) >> (global-set-key [wheel-up] 'down-slightly) >> (global-set-key [double-wheel-down] 'up-slightly) >> (global-set-key [double-wheel-up] 'down-slightly) >> (global-set-key [triple-wheel-down] 'up-slightly) >> (global-set-key [triple-wheel-up] 'down-slightly) >> This is courtesy of >> http://www.the-forgotten.org/wp-content/uploads/emacs/dot-emacs >> where other interesting nuggets most likely can be found. >> Rodney >> > > This bug seems to have disappeared from the tracker. But, in any =20 > case, Marcus Crestani has posted a much more elegant fix on xemacs-=20 > beta: > > (require 'mwheel) > (mwheel-install) > (setq mwheel-follow-mouse t) > > Rodney -- Greetings Pete There's no place like 127.0.0.1 =96 origin unknown