aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReuben Thomas2016-12-04 14:15:50 +0000
committerReuben Thomas2016-12-13 19:43:49 +0000
commitada717efc4cd541fe26b0e8a15698e1c6a732444 (patch)
tree8469128d26f3c6085f3b2616ffb574931780c4e1
parentc89dc9d8f354260cb1a32823660b676166fdaf94 (diff)
downloademacs-ada717efc4cd541fe26b0e8a15698e1c6a732444.tar.gz
emacs-ada717efc4cd541fe26b0e8a15698e1c6a732444.zip
Remove some commented-out code
lisp/textmodes/ispell.el (ispell-process) ispell-valid-dictionary-list): Remove commented-out code.
-rw-r--r--lisp/textmodes/ispell.el7
1 files changed, 1 insertions, 6 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 95e87e430d0..a6dd9058a22 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -860,11 +860,7 @@ and added as a submenu of the \"Edit\" menu.")
860 860
861(defvar ispell-async-processp (and (fboundp 'delete-process) 861(defvar ispell-async-processp (and (fboundp 'delete-process)
862 (fboundp 'process-send-string) 862 (fboundp 'process-send-string)
863 (fboundp 'accept-process-output) 863 (fboundp 'accept-process-output))
864 ;;(fboundp 'make-process)
865 ;;(fboundp 'set-process-filter)
866 ;;(fboundp 'process-kill-without-query)
867 )
868 "Non-nil means that the OS supports asynchronous processes.") 864 "Non-nil means that the OS supports asynchronous processes.")
869 865
870;; Make ispell.el work better with aspell. 866;; Make ispell.el work better with aspell.
@@ -1452,7 +1448,6 @@ The variable `ispell-library-directory' defines their location."
1452 (define-key ispell-menu-map [ispell-buffer] 1448 (define-key ispell-menu-map [ispell-buffer]
1453 `(menu-item ,(purecopy "Spell-Check Buffer") ispell-buffer 1449 `(menu-item ,(purecopy "Spell-Check Buffer") ispell-buffer
1454 :help ,(purecopy "Check spelling of selected buffer"))) 1450 :help ,(purecopy "Check spelling of selected buffer")))
1455 ;;(put 'ispell-region 'menu-enable 'mark-active)
1456 (fset 'ispell-menu-map (symbol-value 'ispell-menu-map)))) 1451 (fset 'ispell-menu-map (symbol-value 'ispell-menu-map))))
1457 1452
1458 1453