From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] Changes to emacs/src/fns.c,v Date: Fri, 27 Jun 2008 19:51:33 +0300 Message-ID: References: Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1214585539 15296 80.91.229.12 (27 Jun 2008 16:52:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 27 Jun 2008 16:52:19 +0000 (UTC) Cc: emacs-devel@gnu.org To: Kenichi Handa Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 27 18:53:04 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KCHC3-0007IP-IH for ged-emacs-devel@m.gmane.org; Fri, 27 Jun 2008 18:53:03 +0200 Original-Received: from localhost ([127.0.0.1]:34600 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KCHBD-000158-Lg for ged-emacs-devel@m.gmane.org; Fri, 27 Jun 2008 12:52:11 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KCHB6-00014m-3K for emacs-devel@gnu.org; Fri, 27 Jun 2008 12:52:04 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KCHB4-00014a-Hx for emacs-devel@gnu.org; Fri, 27 Jun 2008 12:52:03 -0400 Original-Received: from [199.232.76.173] (port=44267 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KCHB4-00014X-D6 for emacs-devel@gnu.org; Fri, 27 Jun 2008 12:52:02 -0400 Original-Received: from mtaout5.012.net.il ([84.95.2.13]:24937) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KCHB4-000841-4w for emacs-devel@gnu.org; Fri, 27 Jun 2008 12:52:02 -0400 Original-Received: from HOME-C4E4A596F7 ([80.230.31.196]) by i_mtaout5.012.net.il (HyperSendmail v2004.12) with ESMTPA id <0K3400H4ZSVEX6N0@i_mtaout5.012.net.il> for emacs-devel@gnu.org; Fri, 27 Jun 2008 20:06:50 +0300 (IDT) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-kernel: by monty-python.gnu.org: Solaris 9.1 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:100057 Archived-At: > From: Kenichi Handa > CC: emacs-devel@gnu.org > Date: Fri, 27 Jun 2008 21:49:01 +0900 > > In article , Eli Zaretskii writes: > > > Yes, but what is "ispell"? Is it a shell script that invokes Aspell, > > or a binary program? What does "ispell -vv" show? > > Here is it. > > % type ispell > ispell is hashed (/usr/X11R6/bin/ispell) > % file /usr/X11R6/bin/ispell > /usr/X11R6/bin/ispell: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.1, dynamically linked (uses shared libs), stripped So this is indeed Ispell... > LANGUAGES = "{british,MASTERDICTS=british.med+,HASHFILES=britishmed+.hash,EXTRADICT=/usr/share/dict/british-english} {american,MASTERDICTS=american.med+,HASHFILES=americanmed+.hash,EXTRADICT=/usr/share/dict/american-english}" ...and this part says that the British dictionary is your default one. You could verify this by comparing the files default.hash and britishmed+.hash (I expect the former to be the hard link to the latter). So try changing that to "american" (you can do that in Emacs, by one of the customizations offered by ispell.el).