From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Chris Swoyer" Newsgroups: gmane.emacs.help Subject: Re: Aspell and Emacs Date: Wed, 28 Jan 2004 18:30:12 -0600 Organization: Cox Communications Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1075336311 32580 80.91.224.253 (29 Jan 2004 00:31:51 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 29 Jan 2004 00:31:51 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jan 29 01:31:46 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 1Am05y-000462-00 for ; Thu, 29 Jan 2004 01:31:46 +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 1Am05m-0002Th-Rd for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Jan 2004 19:31:34 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!news2.telebyte.nl!newsfeed.stueberl.de!peer01.cox.net!cox.net!p01!okepread03.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 42 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Original-NNTP-Posting-Host: 68.97.1.160 Original-X-Complaints-To: abuse@cox.net Original-X-Trace: okepread03 1075336210 68.97.1.160 (Wed, 28 Jan 2004 19:30:10 EST) Original-NNTP-Posting-Date: Wed, 28 Jan 2004 19:30:10 EST Original-Xref: shelby.stanford.edu gnu.emacs.help:120540 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:16486 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:16486 I'm not using fink (everything I have came via i-Installer + Emacs + TexShop. It would be nice to solve this with just these, but if fink is a good way to do so, I'll give it a shot. Many thanks, Chris "Bruce Ingalls" wrote in message news:DrXRb.276612$0P1.80114@twister.nyc.rr.com... > 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))