Function: ispell-process-status

ispell-process-status is a byte-compiled function defined in ispell.el.gz.

Signature

(ispell-process-status)

Documentation

Return the status of the Ispell process.

When asynchronous processes are not supported, run is always returned.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defun ispell-process-status ()
  "Return the status of the Ispell process.
When asynchronous processes are not supported, `run' is always returned."
  (if ispell-async-processp
      (process-status ispell-process)
    (and ispell-process 'run)))