Jeff Lanzarotta writes:

 > If I run aspell on the c
 > drive, for example 'c:\echo inquiry | aspell pipe' everything is
 > fine...  But, if I run it on drive q, 'q:\echo inquiry | aspell pipe', I
 > get, 'Sorry, I can't read the file "/aspell/dict/english".'
 > 

Even under M$ Windoze aspell has command line options:

Try 

aspell --conf-dir=c:/aspell --dict-dir=c:/aspell/dict--data-dir=c:/aspell/data

Or -- if you use it under (X)Emacs -- put this in your .emacs

;; ispell -> aspell
(setq-default ispell-program-name "aspell")
(setq ispell-extra-args (quote ("--conf-dir=" "c:/aspell"
                                       "--dict-dir=" "c:/aspell/dict"
                                       "--data-dir=" "c:/aspell/data")))

_______________________________________________
aspell-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/aspell-user

Reply via email to