]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert "Always send Lisp words to checkdoc-ispell-init"
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 20 Jan 2021 21:11:38 +0000 (22:11 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 20 Jan 2021 21:11:38 +0000 (22:11 +0100)
This reverts commit 93141d581330d94e7eec9f114def2bec15f87866.

This would make checkdoc words be used in other flyspell
buffers.

lisp/emacs-lisp/checkdoc.el

index aae807b8c18f84f208c309c6e42ecd1782cddd82..2e204ff7aea01f6d764bc650d02b91fb05538b0a 100644 (file)
@@ -2106,14 +2106,12 @@ nil."
   (unless ispell-process
     (condition-case nil
        (progn
-          ;; Initialize variables and dict alists.
-          (ispell-set-spellchecker-params)
-          ;; Use the correct dictionary.
-          (ispell-accept-buffer-local-defs))
-      (error (setq checkdoc-spellcheck-documentation-flag nil))))
-  ;; This code copied in part from ispell.el Emacs 19.34
-  (dolist (w checkdoc-ispell-lisp-words)
-    (process-send-string ispell-process (concat "@" w "\n"))))
+          (ispell-set-spellchecker-params)    ; Initialize variables and dict alists.
+          (ispell-accept-buffer-local-defs)   ; Use the correct dictionary.
+         ;; This code copied in part from ispell.el Emacs 19.34
+         (dolist (w checkdoc-ispell-lisp-words)
+           (process-send-string ispell-process (concat "@" w "\n"))))
+      (error (setq checkdoc-spellcheck-documentation-flag nil)))))
 
 (defun checkdoc-ispell-docstring-engine (end &optional take-notes)
   "Run the Ispell tools on the doc string between point and END.