From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Dziulko Newsgroups: gmane.emacs.help Subject: ispell dictionaries Date: Fri, 5 Sep 2003 08:33:03 -0400 (EDT) Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: sea.gmane.org 1062781416 31908 80.91.224.253 (5 Sep 2003 17:03:36 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 5 Sep 2003 17:03:36 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Sep 05 19:03:34 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 19vJzi-0004kG-00 for ; Fri, 05 Sep 2003 19:03:34 +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 19vJzC-0005p7-8n for geh-help-gnu-emacs@m.gmane.org; Fri, 05 Sep 2003 13:03:02 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.22) id 19vFnb-0002dR-3v for help-gnu-emacs@gnu.org; Fri, 05 Sep 2003 08:34:47 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.22) id 19vFmh-0001xi-DA for help-gnu-emacs@gnu.org; Fri, 05 Sep 2003 08:33:53 -0400 Original-Received: from [138.92.8.100] (helo=klaatu.canisius.edu) by monty-python.gnu.org with esmtp (Exim 4.22) id 19vFlw-0001ZG-J9 for help-gnu-emacs@gnu.org; Fri, 05 Sep 2003 08:33:04 -0400 Original-Received: from localhost (dziulko@localhost) by klaatu.canisius.edu (8.11.6/8.11.6) with ESMTP id h85CX3317097 for ; Fri, 5 Sep 2003 08:33:03 -0400 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:12298 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:12298 Where can I find information and descriptions about ispell dictionaries? Specificlly, I want to set the default dictionary to american. I also want to augment it with a personal dictionary. I pasted this from the readme.w32 file into my .emacs: ;; ;; ispell ;; (setq ispell-local-dictionary-alist '((nil ; default (english.aff) "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("UK-xlg" ; english large version "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B" "-d" "UK-xlg") nil iso-8859-1) ("US-xlg" ; american large version "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B" "-d" "US-xlg") nil iso-8859-1) ) ) ;; Thanks!!