Variabel yang Anda cari adalah ispell-program-name
. Barang ini di suatu tempat di Anda .emacs
:
(setq ispell-program-name "/path/to/ispell")
Atau gunakan M-x set-variable
, dll.
Referensi:
Dari sumber ke 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)
Lihat juga: http://emacswiki.org/emacs/InteractiveSpell
Setiap kali Anda tidak dapat menemukan fungsi Emacs, ingat C-h f
(atau variabel:) C-h v
. Masuk ispell
pada Describe function
prompt memberitahu Anda itu ispell is an interactive compiled Lisp function in 'ispell.el'.
, dan dari sana Anda biasanya dapat menemukan apa yang Anda cari.