From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/82139 Path: news.gmane.org!not-for-mail From: Richard Riley Newsgroups: gmane.emacs.gnus.general Subject: Re: flyspell in gnus Date: Tue, 21 Aug 2012 00:58:12 +0100 Organization: aich tea tea pea dicky riley dot net Message-ID: <0hd32l6rqj.fsf@news.eternal-september.org> References: <87pqadhvyj.fsf@tesla.pmx> Reply-To: ding@gnus.org NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1345507153 20179 80.91.229.3 (20 Aug 2012 23:59:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 20 Aug 2012 23:59:13 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M30407@lists.math.uh.edu Tue Aug 21 01:59:14 2012 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1T3bsH-0002qu-Pe for ding-account@gmane.org; Tue, 21 Aug 2012 01:59:14 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1T3brd-0007h6-0f; Mon, 20 Aug 2012 18:58:33 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1T3brb-0007gy-HW for ding@lists.math.uh.edu; Mon, 20 Aug 2012 18:58:31 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1T3bra-00077F-0h for ding@lists.math.uh.edu; Mon, 20 Aug 2012 18:58:30 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1T3brX-0002nb-Vg for ding@gnus.org; Tue, 21 Aug 2012 01:58:28 +0200 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1T3brW-0002GM-Pj for ding@gnus.org; Tue, 21 Aug 2012 01:58:26 +0200 Original-Received: from client-82-26-135-254.pete-bam-1.adsl.virginmedia.com ([82.26.135.254]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 21 Aug 2012 01:58:26 +0200 Original-Received: from rileyrg by client-82-26-135-254.pete-bam-1.adsl.virginmedia.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 21 Aug 2012 01:58:26 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-Lines: 41 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: client-82-26-135-254.pete-bam-1.adsl.virginmedia.com X-Message-Smtp-Method: smtp smtp.gmail.com 587 rileyrg Mail-Copies-To: never User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.1.50 (gnu/linux) Cancel-Lock: sha1:Z3cdBmwmxCmgmssNRxl7EJyIZDU= X-Spam-Score: -1.2 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:82139 Archived-At: Katsumi Yamaoka writes: > Richard wrote: >> Sergio Martínez gmail.com> writes: > >>> What's the value of `flyspell-highlight-flag' and >>> `flyspell-highlight-properties'? > >> Its set to t. > >> HIliting works everywhere else : just not in gnus message >> buffers. flyspell mode is on. > > The value of `flyspell-generic-check-word-predicate' in a > message-mode buffer is `mail-mode-flyspell-verify', isn't it? Yes > This is set in a mail-mode buffer and a message-mode buffer; it > limits flyspell so as to work on only lines that are in a body > and don't begin with `>', `}', `|', or `To:'. So, it won't work > in quoted lines. Try this to make flyspell work everywhere in > a message-mode buffer (eval this in a message-mode buffer): > > (setq flyspell-generic-check-word-predicate nil) I just did "bfore" typing this. No joy. But it knows the word is wrong as flyspell-auto-correct-word works on the unhilited mistake. > > Otherwise: flyspell uses overlay to highlight words. If some > hook (message-*-hook, post-command-hook, etc.) kills ovarlays > you won't see incorrect words highlighting. > Hmm, No idea what could be gnus specific then . It works everywhere else where overlays are used I think (autocomplete stuff). Thanks for the info.