Function: ispell-get-aspell-config-value

ispell-get-aspell-config-value is a byte-compiled function defined in ispell.el.gz.

Signature

(ispell-get-aspell-config-value KEY)

Documentation

Return value of Aspell configuration option KEY.

Assumes that value contains no whitespace.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defun ispell-get-aspell-config-value (key)
  "Return value of Aspell configuration option KEY.
Assumes that value contains no whitespace."
  (with-temp-buffer
    (ispell-call-process ispell-program-name nil t nil "config" key)
    (car (split-string (buffer-string)))))