Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!CS.WISC.EDU!dave From: dave@CS.WISC.EDU (Dave Cohrs) Newsgroups: gnu.emacs Subject: Re: Modifying mouse clicks in X Message-ID: <8902041952.AA03171@romano.cs.wisc.edu> Date: 4 Feb 89 19:52:25 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 17 I had the same problem. I did the following, but don't remember which was actually necessary to make it work: - change your key definitions in your term-setup-hook: (defun your-term-setup-hook () (if (featurep 'x-mouse) (progn (define-key mouse-map x-button-left 'x-mouse-set-point) (define-key mouse-map x-button-middle 'x-mouse-set-mark)))) (setq term-setup-hook 'your-term-setup-hook) - make sure any new mouse functions you define yourself are actually defined before you do the (define-key). dave