diff options
| -rw-r--r-- | lisp/textmodes/ispell.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 512dfcfa6a7..ba98ea55199 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -1200,8 +1200,9 @@ Internal use.") | |||
| 1200 | (with-output-to-string | 1200 | (with-output-to-string |
| 1201 | (with-current-buffer | 1201 | (with-current-buffer |
| 1202 | standard-output | 1202 | standard-output |
| 1203 | (apply 'ispell-call-process | 1203 | (apply 'ispell-call-process |
| 1204 | (concat ispell-program-name "-lsmod") nil t nil args)))) | 1204 | (replace-regexp-in-string "enchant\\(-[0-9]\\)?$" "enchant-lsmod\\1" |
| 1205 | ispell-program-name) nil t nil args)))) | ||
| 1205 | 1206 | ||
| 1206 | (defun ispell--get-extra-word-characters (&optional lang) | 1207 | (defun ispell--get-extra-word-characters (&optional lang) |
| 1207 | "Get the extra word characters for LANG as a character class. | 1208 | "Get the extra word characters for LANG as a character class. |