Function: erc-spelling-unhighlight-word
erc-spelling-unhighlight-word is a byte-compiled function defined in
erc-spelling.el.gz.
This function is obsolete since 31.1; value from flyspell-get-word
now unused
Signature
(erc-spelling-unhighlight-word WORD)
Documentation
Unhighlight the given WORD.
The cadr is the beginning and the caddr is the end.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-spelling.el.gz
(defun erc-spelling-unhighlight-word (word)
"Unhighlight the given WORD.
The cadr is the beginning and the caddr is the end."
(let ((beg (nth 1 word))
(end (nth 2 word)))
(flyspell-unhighlight-at beg)
(when (> end beg)
(flyspell-unhighlight-at (1- end)))))