Function: ispell-call-process

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

Signature

(ispell-call-process &rest ARGS)

Documentation

Like call-process, but defend against bad default-directory.

ARGS are passed to call-process.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defun ispell-call-process (&rest args)
  "Like `call-process', but defend against bad `default-directory'.
ARGS are passed to `call-process'."
  (ispell-with-safe-default-directory
    (apply #'call-process args)))