Can someone you possibly look at debugging this? (Please respond to this message if you debug it.)
------- Start of forwarded message ------- From: Stephen Eglen <[EMAIL PROTECTED]> Date: Mon, 25 Apr 2005 12:30:06 +0100 To: [email protected] 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: [EMAIL PROTECTED] 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 [email protected] http://lists.gnu.org/mailman/listinfo/emacs-devel ------- End of forwarded message ------- _______________________________________________ Emacs-devel mailing list [email protected] http://lists.gnu.org/mailman/listinfo/emacs-devel
