Aradığınız değişken ispell-program-name
. Bunu içinde bir yerde doldur .emacs
:
(setq ispell-program-name "/path/to/ispell")
Veya kullanın M-x set-variable
, vb.
Referanslar:
Kaynaklardan 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)
Ayrıca bakınız: http://emacswiki.org/emacs/InteractiveSpell
Bir Emacs işlevini bulamadığınızda, hatırlayın C-h f
(veya bir değişken :) C-h v
. Girme ispell
de Describe function
istemi size söyler ispell is an interactive compiled Lisp function in 'ispell.el'.
ve genellikle aradığınızı orada bulabilirsiniz dan.