From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Rodgers Newsgroups: gmane.emacs.bugs Subject: Re: flyspell-auto-correct-word many wrong-type-argument Date: Wed, 24 Sep 2003 11:09:02 -0600 Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: <3F71CFAE.6060308@yahoo.com> References: <3F54CB38.3080307@yahoo.com> <3F6F1797.8070004@yahoo.com> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1064424438 26069 80.91.224.253 (24 Sep 2003 17:27:18 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 24 Sep 2003 17:27:18 +0000 (UTC) Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Wed Sep 24 19:27:16 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1A2DQ3-0001Q9-00 for ; Wed, 24 Sep 2003 19:27:16 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.22) id 1A2DPg-0003io-8n for geb-bug-gnu-emacs@m.gmane.org; Wed, 24 Sep 2003 13:26:52 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.22) id 1A2DNq-00031X-8p for bug-gnu-emacs@prep.ai.mit.edu; Wed, 24 Sep 2003 13:24:58 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.22) id 1A2DNg-0002zE-E3 for bug-gnu-emacs@prep.ai.mit.edu; Wed, 24 Sep 2003 13:24:49 -0400 Original-Received: from [132.239.1.53] (helo=mailbox1.ucsd.edu) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.22) id 1A2D9y-0000U6-Jh for bug-gnu-emacs@prep.ai.mit.edu; Wed, 24 Sep 2003 13:10:39 -0400 Original-Received: from mail.fu-berlin.de (mail.fu-berlin.de [160.45.11.165]) by mailbox1.ucsd.edu (8.12.10/8.12.3) with ESMTP id h8OHAFQM065128 for ; Wed, 24 Sep 2003 10:10:16 -0700 (PDT) Original-Received: by mail.fu-berlin.de (Smail3.2.0.98) from Curry.ZEDAT.FU-Berlin.DE (160.45.10.36) with esmtp id ; Wed, 24 Sep 2003 19:09:09 +0200 (MEST) Original-Received: by Curry.ZEDAT.FU-Berlin.DE (Smail3.2.0.98) from news.fu-berlin.de with bsmtp id ; Wed, 24 Sep 2003 19:08:56 +0200 (MEST) Original-To: gnu-emacs-bug@moderators.isc.org Original-Path: 170.207.51.80!not-for-mail Original-Newsgroups: gnu.emacs.bug Original-Lines: 16 X-Orig-NNTP-Posting-Host: 170.207.51.80 X-Orig-X-Trace: news.uni-berlin.de 1064423336 5794367 170.207.51.80 (16 [82742]) User-Agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:0.9.4.1) Gecko/20020406 Netscape6/6.2.2 X-Accept-Language: en-us X-Spamscanner: mailbox1.ucsd.edu (v1.2 May 26 2003 01:55:38, 1.9/5.0 2.55) X-MailScanner: PASSED (v1.2.8 60029 h8OHAFQM065128 mailbox1.ucsd.edu) X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.bugs:5848 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:5848 Richard Stallman wrote: > Does this replacement function give good results? > > (defun flyspell-abbrev-table () > (if flyspell-use-global-abbrev-table-p > global-abbrev-table > (or local-abbrev-table global-abbrev-table))) It prevents the error, but has the undesirable effect of using the global abbrev table when flyspell-use-global-abbrev-table-p is nil. -- Kevin Rodgers