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: Aspell and .emacs Date: Mon, 2 Feb 2004 16:24:51 -0600 Organization: Cox Communications Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1075761189 22721 80.91.224.253 (2 Feb 2004 22:33:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 2 Feb 2004 22:33:09 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Feb 02 23:33: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 1Anmcs-00015A-00 for ; Mon, 02 Feb 2004 23:33:06 +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 1Anmbh-000828-Nc for geh-help-gnu-emacs@m.gmane.org; Mon, 02 Feb 2004 17:31:53 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newshosting.com!nx02.iad01.newshosting.com!border1.nntp.ash.giganews.com!border2.nntp.ash.giganews.com!nntp.giganews.com!cyclone1.gnilink.net!bigfeed2.bellsouth.net!bigfeed.bellsouth.net!news.bellsouth.net!cox.net!news-xfer.cox.net!p01!okepread03.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 51 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 1075760684 68.97.1.160 (Mon, 02 Feb 2004 17:24:44 EST) Original-NNTP-Posting-Date: Mon, 02 Feb 2004 17:24:44 EST Original-Xref: shelby.stanford.edu gnu.emacs.help:120636 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:16583 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:16583 'I've moved to a mac (OS 10.3.2) and have installed aspell (which I only use for Emacs, and usually LaTeXing). I have (setq ispell-program-name "/Library/PreferencePanes/Spelling.prefPane/Contents/MacOS/cocoAspell") (add-hook 'LaTeX-mode-hook 'flyspell-mode) in my .emacs, which works fine, but I'd like to be able to check word by word, region by region, easily add words to the dictionary while spell checking (and from my old ispell_words file). Is there a way to get some counterpart of this (from my _emacs under Windows) to work (obviously it will need path changes, but that hasn't been enough): -------------- (autoload 'ispell-word "ispell4" "Check spelling of word at or before point" t) (autoload 'ispell-complete-word "ispell4" "Complete word at or before point" t) (autoload 'ispell-region "ispell4" "Check spelling of every word in the region" t) (autoload 'ispell-buffer "ispell4" "Check spelling of every word in the buffer" t) (setq ispell-command "c:/emacs/bin/ispell4/ispell.exe" ispell-look-dictionary "c:/emacs/bin/ispell4/ispell.words" ispell-look-command "c:/emacs/bin/ispell/look.exe" ispell-command-options (list "-d" "c:/emacs/bin/ispell4/ispell.dict") (setq ispell-command "c:/ispell4/ispell.exe" ispell-look-dictionary "c:/ispell4/ispell.words" ispell-look-command "c:/ispell/look.exe" ispell-command-options (list "-d" "c:/ispell4/ispell.dict") ) (setq ispell-enable-tex-parser t) (define-key global-map "\C-c1" 'ispell-word) (define-key global-map "\C-c2" 'ispell-region) (define-key global-map "\C-c3" 'ispell-buffer) (define-key global-map "\C-c4" 'ispell-complete-word ) --------------------- Thanks, CS