From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Hugo Wolf Newsgroups: gmane.emacs.help Subject: Re: Help: ISPELL and Aqua EMACS (OSX) Date: Sun, 24 Nov 2002 14:28:00 GMT Organization: AT&T Broadband Sender: help-gnu-emacs-admin@gnu.org Message-ID: References: NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1038148440 18449 80.91.224.249 (24 Nov 2002 14:34:00 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 24 Nov 2002 14:34:00 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18Fxpf-0004nJ-00 for ; Sun, 24 Nov 2002 15:33:59 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 18Fxn6-0006Mf-00; Sun, 24 Nov 2002 09:31:20 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!wn11feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi_feed4!attbi.com!sccrnsc03.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: slrn/0.9.7.4 (Darwin) Original-Lines: 25 Original-NNTP-Posting-Host: 66.31.41.137 Original-X-Complaints-To: abuse@attbi.com Original-X-Trace: sccrnsc03 1038148080 66.31.41.137 (Sun, 24 Nov 2002 14:28:00 GMT) Original-NNTP-Posting-Date: Sun, 24 Nov 2002 14:28:00 GMT Original-Xref: shelby.stanford.edu gnu.emacs.help:107362 Original-To: help-gnu-emacs@gnu.org Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:3915 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:3915 In article , Edward Dodge wrote: > Aqua EMACS doesn't seem to source the whole PATH variable If you launch emacs by double-clicking Emacs.app, it doesn't source your shell rc. That's the root of the problem. You can open from it a shell instead - in that case it will of course use the current value of PATH. If you create a Terminal document which opens Emacs.app, you can double-click that to launch emacs and the effect will be the same. The other choice is to set exec-path explicitly in your .emacs. That's what I do. For instance if your shell rc adds the fink directories to PATH, do this in .emacs: (setq exec-path (append '("/sw/bin" "/sw/sbin") exec-path)) Or you can set the ispell path specifically, but that won't help for the next thing you try to run from emacs (eg stunnel if you want to use vm with pop3s).