From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Bruce Ingalls Newsgroups: gmane.emacs.help Subject: Re: Aspell and Emacs Date: Wed, 28 Jan 2004 23:18:59 GMT Organization: Road Runner - NYC Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1075332735 25456 80.91.224.253 (28 Jan 2004 23:32:15 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 28 Jan 2004 23:32:15 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jan 29 00:32:06 2004 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 1AlzAD-0008QS-00 for ; Thu, 29 Jan 2004 00:32:05 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1Alz9I-0008CG-I0 for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Jan 2004 18:31:08 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!cyclone.bc.net!newsfeed.telusplanet.net!newsfeed.telus.net!news3.optonline.net!cyclone.rdc-nyc.rr.com!news-out.nyc.rr.com!twister.nyc.rr.com.POSTED!53ab2750!not-for-mail User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6b) Gecko/20031205 Thunderbird/0.4 X-Accept-Language: en-us, en Original-Newsgroups: gnu.emacs.help In-Reply-To: Original-Lines: 27 Original-NNTP-Posting-Host: 68.174.39.174 Original-X-Complaints-To: abuse@rr.com Original-X-Trace: twister.nyc.rr.com 1075331939 68.174.39.174 (Wed, 28 Jan 2004 18:18:59 EST) Original-NNTP-Posting-Date: Wed, 28 Jan 2004 18:18:59 EST Original-Xref: shelby.stanford.edu gnu.emacs.help:120539 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:16485 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:16485 Chris Swoyer wrote: > I just downloaded and installed cocoAspell 1.4.1. I am using > enhanced carbon emacs (under Mac's OS 10.3.2). > > 1. what do I need to insert in my .emacs file so Emacs will use > Aspell ... Are you using Fink? I added the following contribution recently to for Mac users. Hmm. I bet I can change the first line to simply (when (file-readable-p "/sw/bin") as well as drop the defun declaration... ;;__________________________________________________________________________ ;;;; Fink Paths (when (and (file-readable-p "/sw/bin") (file-exists-p "/sw/sbin")) (defvar shell-bin-path '("/sw/bin" "/sw/sbin") "The paths where fink binaries can be found") (defun fix-shell-paths nil (if (and (boundp 'exec-path) (listp exec-path)) (setq exec-path (append shell-bin-path exec-path)) (setq exec-path shell-bin-path))) (fix-shell-paths))