Function: ispell-error-checking-word

ispell-error-checking-word is a byte-compiled function defined in ispell.el.gz.

Signature

(ispell-error-checking-word WORD)

Documentation

Return a string describing that checking for WORD failed.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defun ispell-error-checking-word (word)
  "Return a string describing that checking for WORD failed."
  (format "Error checking word %s using %s with %s dictionary"
          (funcall ispell-format-word-function word)
          (file-name-nondirectory ispell-program-name)
          (or ispell-current-dictionary "default")))