Function: ispell-highlight-spelling-error
ispell-highlight-spelling-error is a byte-compiled function defined in
ispell.el.gz.
Signature
(ispell-highlight-spelling-error START END &optional HIGHLIGHT REFRESH)
Documentation
Highlight spelling error between START and END.
Optional argument HIGHLIGHT, if non-nil, means to highlight mis-spelling.
See ispell-highlight-spelling-error-generic for the meaning of optional
argument REFRESH, which is passed to that function as the 4th argument.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defun ispell-highlight-spelling-error (start end &optional highlight refresh)
"Highlight spelling error between START and END.
Optional argument HIGHLIGHT, if non-nil, means to highlight mis-spelling.
See `ispell-highlight-spelling-error-generic' for the meaning of optional
argument REFRESH, which is passed to that function as the 4th argument."
(if (display-color-p)
(ispell-highlight-spelling-error-overlay start end highlight)
(ispell-highlight-spelling-error-generic start end highlight refresh)))