From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: Flyspell error Date: Tue, 04 Aug 2009 21:10:12 +0300 Message-ID: <83prbbo3gb.fsf@gnu.org> References: <66ade717-927b-4304-bf4b-104d0848cc5c@u16g2000pru.googlegroups.com> <844648ac-0b6c-44b0-bfee-ac5f147ce0f9@u38g2000pro.googlegroups.com> <2537dd5a-5644-416b-be14-38877d92bf5c@g1g2000pra.googlegroups.com> NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1249409523 17753 80.91.229.12 (4 Aug 2009 18:12:03 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 4 Aug 2009 18:12:03 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Aug 04 20:11:56 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MYOUO-0000cs-0l for geh-help-gnu-emacs@m.gmane.org; Tue, 04 Aug 2009 20:11:56 +0200 Original-Received: from localhost ([127.0.0.1]:53585 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MYOUN-0007tH-CP for geh-help-gnu-emacs@m.gmane.org; Tue, 04 Aug 2009 14:11:55 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MYOU0-0007sv-2H for help-gnu-emacs@gnu.org; Tue, 04 Aug 2009 14:11:32 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MYOTz-0007sj-Fb for help-gnu-emacs@gnu.org; Tue, 04 Aug 2009 14:11:31 -0400 Original-Received: from [199.232.76.173] (port=37462 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MYOTz-0007sg-CL for help-gnu-emacs@gnu.org; Tue, 04 Aug 2009 14:11:31 -0400 Original-Received: from mtaout1.012.net.il ([84.95.2.1]:33114) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MYOTy-0000cA-Sp for help-gnu-emacs@gnu.org; Tue, 04 Aug 2009 14:11:31 -0400 Original-Received: from conversion-daemon.i-mtaout1.012.net.il by i-mtaout1.012.net.il (HyperSendmail v2007.08) id <0KNV00H005ZNQY00@i-mtaout1.012.net.il> for help-gnu-emacs@gnu.org; Tue, 04 Aug 2009 21:10:13 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([77.127.149.138]) by i-mtaout1.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0KNV00D7C6H0C6B0@i-mtaout1.012.net.il> for help-gnu-emacs@gnu.org; Tue, 04 Aug 2009 21:10:13 +0300 (IDT) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by monty-python.gnu.org: Solaris 9.1 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:66741 Archived-At: > Date: Tue, 4 Aug 2009 14:44:33 +1000 > From: sam jesse > Cc: help-gnu-emacs@gnu.org > > (when (string-equal system-type "windows-nt") > (progn > (setenv "PATH" "/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin") Huh? why do you set PATH to a Unixy value when you are on a Windows machine? You should instead set PATH to the same value you set exec-path (only not as a Lisp list): > (setq exec-path > '( > "C:/Windows/system32/" > "C:/Windows/" > "C:/Windows/System32/Wbem/" > "C:/Windows/system32/WindowsPowerShell/v1.0/" > "C:/Program Files/Aspell/bin/" > emacs shell echo %PATH% puts out > > /usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/ Of course! because that's what you set it to, above.