From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Oliver Jones Newsgroups: gmane.emacs.help Subject: Can't open affix or dictionary flies Date: Thu, 10 Jan 2013 17:29:37 +0100 Message-ID: <9810_1357835377_ZZi1c6V0Guq3D.00_50EEEC71.2080309@wiwi.uni-bielefeld.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: QUOTED-PRINTABLE X-Trace: ger.gmane.org 1357836818 9786 80.91.229.3 (10 Jan 2013 16:53:38 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 10 Jan 2013 16:53:38 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jan 10 17:53:56 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TtLO7-0003ot-3x for geh-help-gnu-emacs@m.gmane.org; Thu, 10 Jan 2013 17:53:55 +0100 Original-Received: from localhost ([::1]:37972 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtLNr-0005Mq-A3 for geh-help-gnu-emacs@m.gmane.org; Thu, 10 Jan 2013 11:53:39 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:47856) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtL0h-0002gO-Bs for help-gnu-emacs@gnu.org; Thu, 10 Jan 2013 11:29:46 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TtL0e-0008FM-0a for help-gnu-emacs@gnu.org; Thu, 10 Jan 2013 11:29:43 -0500 Original-Received: from mux2-unibi-smtp.hrz.uni-bielefeld.de ([129.70.204.73]:35318) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtL0d-0008Em-Qp for help-gnu-emacs@gnu.org; Thu, 10 Jan 2013 11:29:39 -0500 Original-Received: from pmxchannel-daemon.mux2-unibi-smtp.hrz.uni-bielefeld.de by mux2-unibi-smtp.hrz.uni-bielefeld.de (Sun Java(tm) System Messaging Server 6.3-6.03 (built Mar 14 2008; 32bit)) id <0MGF002004HDAD00@mux2-unibi-smtp.hrz.uni-bielefeld.de> for help-gnu-emacs@gnu.org; Thu, 10 Jan 2013 17:29:37 +0100 (CET) Original-Received: from [129.70.85.57] ([129.70.85.57]) by mux2-unibi-smtp.hrz.uni-bielefeld.de (Sun Java(tm) System Messaging Server 6.3-6.03 (built Mar 14 2008; 32bit)) with ESMTPPSA id <0MGF00KK54H9JN80@mux2-unibi-smtp.hrz.uni-bielefeld.de> for help-gnu-emacs@gnu.org; Thu, 10 Jan 2013 17:29:37 +0100 (CET) X-EnvFrom: ojones@wiwi.uni-bielefeld.de X-PMX-Version: 5.5.9.395186, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2013.1.10.161815, pmx10 X-Connecting-IP: 129.70.85.57 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.15) Gecko/20110303 Lightning/1.0b2 Thunderbird/3.1.9 X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-Received-From: 129.70.204.73 X-Mailman-Approved-At: Thu, 10 Jan 2013 11:53:34 -0500 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 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 Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:88560 Archived-At: Hello everone, this is my first eMail to the list. I have trouble getting spellchecking to work with Emacs 24.2.1 and Hu= nspell 1.3.2 on Windows XP. I have read the help about spelling in the built in manual and search= ed the internet where I=20 found advice to include these lines to my ~/.emacs.d/init.el file. (setq ispell-dictionary-alist '((nil ; default "[a-z=E4=F6=FC=DFA-Z=C4=D6=DC]" "[^a-z=E4=F6=FC=DFA-Z=C4=D6= =DC]" "[']" t ("-d" "C:\\Dokumente und Einstellungen\\ojones\\Eigene=20 Dateien\\dictionaries\\de_DE_frami" "-i" "utf-8") nil utf-8) ("english" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-d" "en_GB") nil utf-8) ("german" "[a-z=E4=F6=FC=DFA-Z=C4=D6=DC]" "[^a-z=E4=F6=FC=DFA-Z=C4=D6= =DC]" "[']" t ("-d" "'C:\\Dokumente und Einstellungen\\ojones\\Eigene=20 Dateien\\dictionaries\\de_DE_frami'" "-i" "utf-8") nil utf-8) ("british" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-d" "en_GB") nil utf-8))) (eval-after-load "ispell" (progn (setq ispell-dictionary "german" =09 ispell-extra-args '("-a" "-i" "utf-8") ; aspell doesn't unders= tand -i utf-8, hunspell=20 needs it =09 ispell-silently-savep t))) (setq ispell-program-name "C:\\Dokumente und Einstellungen\\ojones\\E= igene=20 Dateien\\hunspell-mingw-1.3.2-win32\\bin\\hunspell.exe") where I made changes regarding the path to the affix and dictionary f= iles and the hunspell.exe. I verified that hunspell works, by executing it on the command line. When I type M-x ispell in emacs I get the following error message Can't open affix or dictionary flies for dictionary named "german". @(#) International Ispell Version 3.2.06 (but really Hunspell 1.3.2) @(#) International Ispell Version 3.2.06 (but really Hunspell 1.3.2) Any help is highly appreciated. Kind Regards Oliver