help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: using ispell to check a word under the mouse pointer


From: Kai Großjohann
Subject: Re: using ispell to check a word under the mouse pointer
Date: Mon, 30 Jun 2003 22:51:23 +0200
User-agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3.50 (gnu/linux)

Robin Norwood <rnorwood@redhat.com> writes:

> I'm trying to get ispell to spell check a word under the mouse pointer
> after a mouse click.  I have in my .emacs:
>
>
> ;; ispell
> (global-set-key [(M-S-mouse-3)] 'ispell-word)

(defun robin-ispell-word-mouse (e)
  (interactive "e")
  (mouse-set-point e)
  (ispell-word))

-- 
~/.signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]