Biến bạn đang tìm là ispell-program-name
. Thứ này ở đâu đó trong của bạn .emacs
:
(setq ispell-program-name "/path/to/ispell")
Hoặc sử dụng M-x set-variable
, vv
Tài liệu tham khảo:
Từ các nguồn để 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)
Xem thêm: http://emacswiki.org/emacs/InteractiveSpell
Bất cứ khi nào bạn không thể tìm thấy hàm Emacs, hãy nhớ C-h f
(hoặc một biến C-h v
:). Nhập ispell
vào Describe function
dấu nhắc cho bạn biết điều đó ispell is an interactive compiled Lisp function in 'ispell.el'.
và từ đó bạn thường có thể tìm thấy những gì bạn đang tìm kiếm.