Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Enabling Flyspell-mode gives an error

Tags:

emacs

I recently had to reimage my windows laptop, and emacs is now giving me a strange error: "Starting new Ispell process [default] Enabling flyspell mode gave an error" I have aspell installed, and it is accessible via emacs. I have attached a picture to show this. I also have (setq-default ispell-program-name "aspell") in my emacs configuration. This same configuration works properly on my other windows machines. What might be the problem here? Image: Aspell in emacs-shell http://img145.imageshack.us/img145/4497/emacsaspell.jpg

like image 369
vedang Avatar asked Nov 23 '09 08:11

vedang


1 Answers

You can add the line:

(setq flyspell-issue-welcome-flag nil) ;; fix flyspell problem

to your personal emacs initialization file (~/.emacs.d/init.el, ~/.emacs, ~/.emacs.el, whatever...) and that should bypass the problem for you.

like image 158
Dennis Sheil Avatar answered Sep 25 '22 19:09

Dennis Sheil