diff options
author | Reuben Thomas <rrt@sc3d.org> | 2020-11-04 08:50:25 +0000 |
---|---|---|
committer | Reuben Thomas <rrt@sc3d.org> | 2020-11-04 08:50:25 +0000 |
commit | 2668bb47b03230400f94855a58b81a516b46acc5 (patch) | |
tree | 2e0f209ba4c13082d4bf96d475d2970615f1ed3c /lisp | |
parent | f7ea667b54380a7b7c60490cef30728b5f444ae1 (diff) | |
download | emacs-2668bb47b03230400f94855a58b81a516b46acc5.tar.gz emacs-2668bb47b03230400f94855a58b81a516b46acc5.tar.bz2 emacs-2668bb47b03230400f94855a58b81a516b46acc5.zip |
Remove unused variable in ispell.el (thanks, Stefan Kangas)
* lisp/textmodes/ispell.el (ispell-check-version): Remove unused
variable `speller'.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/textmodes/ispell.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index c185f9f2c81..3358cf1ba32 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -685,9 +685,7 @@ Otherwise returns the library directory name, if that is defined." (setq status (ispell-call-process ispell-program-name nil t nil (let ((case-fold-search - (memq system-type '(ms-dos windows-nt))) - (speller - (file-name-nondirectory ispell-program-name))) + (memq system-type '(ms-dos windows-nt)))) "-vv"))) (goto-char (point-min)) (if interactivep |