From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: [S.J.Eglen@damtp.cam.ac.uk: flyspell bug] Date: Wed, 11 May 2005 12:28:45 -0400 Message-ID: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1115829073 26165 80.91.229.2 (11 May 2005 16:31:13 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 11 May 2005 16:31:13 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed May 11 18:31:11 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DVu5w-00055L-VJ for ged-emacs-devel@m.gmane.org; Wed, 11 May 2005 18:30:01 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DVuEi-0004WY-M5 for ged-emacs-devel@m.gmane.org; Wed, 11 May 2005 12:39:04 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DVu9g-00074X-4c for emacs-devel@gnu.org; Wed, 11 May 2005 12:33:52 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DVu9c-00071u-LD for emacs-devel@gnu.org; Wed, 11 May 2005 12:33:49 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DVu9b-0006zv-8O for emacs-devel@gnu.org; Wed, 11 May 2005 12:33:47 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DVuCV-0000Tq-Ru for emacs-devel@gnu.org; Wed, 11 May 2005 12:36:47 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1DVu4j-0003nU-2z; Wed, 11 May 2005 12:28:45 -0400 Original-To: emacs-devel@gnu.org 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:36985 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:36985 Can someone you possibly look at debugging this? (Please respond to this message if you debug it.) ------- Start of forwarded message ------- From: Stephen Eglen Date: Mon, 25 Apr 2005 12:30:06 +0100 To: emacs-devel@gnu.org X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ X-Cam-AntiVirus: No virus found X-Cam-SpamDetails: Not scanned Subject: flyspell bug Sender: emacs-devel-bounces+rms=gnu.org@gnu.org X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on monty-python X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 In today's CVS emacs: emacs -q C-h N M-x flyspell-buffer I get: Error: Can't check region and *flyspell-region* contains: Error: Could not open the file "list" for reading. This is compatibility problem between ispell and aspell. I have: $ ispell -v @(#) International Ispell Version 3.1.20 (but really Aspell 0.50.5) Relevant settings: ispell-really-aspell t ispell-program-name "ispell" The problem is that ispell doesn't allow the "list" command: $ echo "hello hhh" | ispell list Error: Could not open the file "list" for reading. whereas all the followng forms work (flagging hhh as a typo): $ echo "hello hhh" | ispell -l $ echo "hello hhh" | aspell list $ echo "hello hhh" | aspell -l So can I suggest we make the simple change within: (defun flyspell-large-region (beg end) from (if ispell-really-aspell "list" "-l") (line 1332) to "-l" Or are thing likely to be more complex depending on ispell/aspell version? Stephen _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel ------- End of forwarded message -------