From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.devel Subject: Re: flyspell bug Date: Thu, 12 May 2005 09:14:47 +0300 Organization: JURTA Message-ID: <877ji5szuf.fsf@jurta.org> References: <01c5531e$Blat.v2.4$ea8d9a00@zahav.net.il> <87zmv3rg09.fsf_-_@jurta.org> <01c55511$Blat.v2.4$cb2c24c0@zahav.net.il> <87is1roent.fsf@jurta.org> <01c55599$Blat.v2.4$1fc21ee0@zahav.net.il> <873bsukw6j.fsf@jurta.org> <01c55626$Blat.v2.4$b81ecf20@zahav.net.il> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1115880735 5706 80.91.229.2 (12 May 2005 06:52:15 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 12 May 2005 06:52:15 +0000 (UTC) Cc: public@heslin.eclipse.co.uk, mange@freemail.hu, s.j.eglen@damtp.cam.ac.uk, k.stevens@ieee.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu May 12 08:52:10 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DW7YH-0005F7-Ey for ged-emacs-devel@m.gmane.org; Thu, 12 May 2005 08:52:09 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DW7hA-0006nM-ET for ged-emacs-devel@m.gmane.org; Thu, 12 May 2005 03:01:20 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DW7a1-00050Z-Ak for emacs-devel@gnu.org; Thu, 12 May 2005 02:53:57 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DW7Zz-0004zr-Ss for emacs-devel@gnu.org; Thu, 12 May 2005 02:53:56 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DW7Zt-0004ue-AL for emacs-devel@gnu.org; Thu, 12 May 2005 02:53:50 -0400 Original-Received: from [194.126.101.98] (helo=MXR-3.estpak.ee) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DW7ex-00073f-Pa for emacs-devel@gnu.org; Thu, 12 May 2005 02:59:08 -0400 Original-Received: from mail.neti.ee (80-235-35-225-dsl.mus.estpak.ee [80.235.35.225]) by MXR-3.estpak.ee (Postfix) with ESMTP id E170B147D0B; Thu, 12 May 2005 09:52:12 +0300 (EEST) Original-To: emacs-devel@gnu.org In-Reply-To: <01c55626$Blat.v2.4$b81ecf20@zahav.net.il> (Eli Zaretskii's message of "Wed, 11 May 2005 15:40:12 +0300") User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/22.0.50 (gnu/linux) X-Virus-Scanned: by amavisd-new-2.2.1 (20041222) (Debian) at neti.ee 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:37012 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:37012 To my surprise I just discovered that the latest development release of ispell.el at http://kdstevens.com/~stevens/ispell-page.html already supports the option to choose between ispell and aspell: (defcustom ispell-prefer-aspell nil "*Select preference between using the `ispell' or `aspell' program. `ispell' is used by default. When this variable is set, `aspell' is used if it is installed on the system." :type 'boolean :group 'ispell) (defcustom ispell-program-name (or (and (exec-installed-p "aspell") (or ispell-prefer-aspell (not (exec-installed-p "ispell"))) "aspell") "ispell") "Program invoked by \\[ispell-word] and \\[ispell-region] commands." :type 'string :group 'ispell) This seems right to me. Are there any reasons why the latest development release of ispell.el is not synced with Emacs CVS? -- Juri Linkov http://www.jurta.org/emacs/