all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* mouse-2 event in Emacs 23.60.1 - ignored?
@ 2008-07-02  4:46 philkime
  2008-07-02 18:47 ` Peter Dyballa
  0 siblings, 1 reply; 2+ messages in thread
From: philkime @ 2008-07-02  4:46 UTC (permalink / raw
  To: help-gnu-emacs

I can't get Emacs 23.60.1 on OSX (Emacs.app) to recognise mouse-2
events. C-h k seems to think that there are no mouse-2 events at all.
Running Carbon Emacs 22.1 side-by-side and mouse-2 events are
recognised without problem. I tried changing the mouse-wheel-click-
event and mouse-wheel-inhibit-click-time variables but these made no
difference. Am I missing something here?


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: mouse-2 event in Emacs 23.60.1 - ignored?
  2008-07-02  4:46 mouse-2 event in Emacs 23.60.1 - ignored? philkime
@ 2008-07-02 18:47 ` Peter Dyballa
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Dyballa @ 2008-07-02 18:47 UTC (permalink / raw
  To: philkime; +Cc: help-gnu-emacs


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  
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  
>> solution.  See
>> http://sourceforge.net/tracker/index.php? 
>> func=detail&aid=1867278&group_id=148174&atid=770754 The short  
>> version is wheel mouse and 2-finger scrolling don't work. However,  
>> 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  
> case, Marcus Crestani has posted a much more elegant fix on xemacs- 
> beta:
>
>   (require 'mwheel)
>   (mwheel-install)
>   (setq mwheel-follow-mouse t)
>
> Rodney


--
Greetings

   Pete

There's no place like 127.0.0.1
			– origin unknown







^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-07-02 18:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-02  4:46 mouse-2 event in Emacs 23.60.1 - ignored? philkime
2008-07-02 18:47 ` Peter Dyballa

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.