This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;###autoload | |
(defun ispell-hl-minor-mode (&optional arg) | |
"Toggle Ispell Highlight mode. | |
With prefix ARG, turn Ispell Highlight mode on if arg is positive. | |
In Ispell Highlight mode, changing the buffer contens will spell | |
the words around the cursor and highlight miss-spelled ones!" | |
(interactive "P") | |
(setq ispell-hl-minor-mode | |
(not (or (and (null arg) ispell-hl-minor-mode) |