From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Eli Zaretskii" Newsgroups: gmane.emacs.devel Subject: Re: [mange@freemail.hu: Re: flyspell bug] Date: Sat, 07 May 2005 19:06:47 +0300 Message-ID: <01c5531e$Blat.v2.4$ea8d9a00@zahav.net.il> References: Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7BIT X-Trace: sea.gmane.org 1115484180 19400 80.91.229.2 (7 May 2005 16:43:00 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 7 May 2005 16:43:00 +0000 (UTC) Cc: Magnus Henoch Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat May 07 18:42:57 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DUSNn-00029q-01 for ged-emacs-devel@m.gmane.org; Sat, 07 May 2005 18:42:27 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DUSVi-0001aQ-QI for ged-emacs-devel@m.gmane.org; Sat, 07 May 2005 12:50:38 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DUSPr-0006b1-LJ for emacs-devel@gnu.org; Sat, 07 May 2005 12:44:35 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DUSPp-0006Yu-OB for emacs-devel@gnu.org; Sat, 07 May 2005 12:44:34 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DUSM9-00053D-SC for emacs-devel@gnu.org; Sat, 07 May 2005 12:40:45 -0400 Original-Received: from [192.114.186.66] (helo=romy.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DURxG-0002IA-FR for emacs-devel@gnu.org; Sat, 07 May 2005 12:15:02 -0400 Original-Received: from zaretski (IGLD-80-230-69-180.inter.net.il [80.230.69.180]) by romy.inter.net.il (MOS 3.5.6-GR) with ESMTP id BDX22427 (AUTH halo1); Sat, 7 May 2005 19:09:18 +0300 (IDT) Original-To: emacs-devel@gnu.org X-Mailer: emacs 22.0.50 (via feedmail 8 I) and Blat ver 2.4 In-reply-to: (message from Richard Stallman on Thu, 28 Apr 2005 07:01:04 -0400) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:36817 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:36817 > To: emacs-devel@gnu.org > From: Magnus Henoch > Date: Wed, 27 Apr 2005 16:04:45 +0200 > Subject: Re: flyspell bug > > So it seems that the variable ispell-really-aspell is moderately > useful, as there are three situations: ispell, aspell in ispell > compatibility mode, and "real" aspell. > > The following patch eliminates the middle case. The documentation of > aspell 0.50.5 claims that it supports the "list" command, but I > haven't tested it. > > - --- orig/lisp/textmodes/ispell.el > +++ mod/lisp/textmodes/ispell.el > @@ -301,7 +301,8 @@ > :type 'integer > :group 'ispell) > > - -(defcustom ispell-program-name "ispell" > +(defcustom ispell-program-name (or (executable-find "aspell") > + "ispell") > "Program invoked by \\[ispell-word] and \\[ispell-region] commands." > :type 'string > :group 'ispell) Thanks, I installed a slightly different change (using locate-file instead of executable-find).