Змінна, яку ви шукаєте, це ispell-program-name
. Надайте це десь у вашому .emacs
:
(setq ispell-program-name "/path/to/ispell")
Або використовувати M-x set-variable
тощо.
Список літератури:
Від джерел до ispell.el
(defcustom ispell-program-name
(or (locate-file "aspell" exec-path exec-suffixes 'file-executable-p)
(locate-file "ispell" exec-path exec-suffixes 'file-executable-p)
(locate-file "hunspell" exec-path exec-suffixes 'file-executable-p)
"ispell")
"Program invoked by \\[ispell-word] and \\[ispell-region] commands."
:type 'string
:group 'ispell)
Дивіться також: http://emacswiki.org/emacs/InteractiveSpell
Щоразу, коли ви не можете знайти функцію Emacs, пам’ятайте C-h f
(або змінну:) C-h v
. Увійшовши ispell
в Describe function
підказку, ви повідомляєте про це ispell is an interactive compiled Lisp function in 'ispell.el'.
, і звідти зазвичай ви можете знайти те, що шукаєте.