Function: ispell-buffer-with-debug

ispell-buffer-with-debug is an autoloaded, interactive and byte-compiled function defined in ispell.el.gz.

Signature

(ispell-buffer-with-debug &optional APPEND)

Documentation

ispell-buffer with some output sent to ispell-debug-buffer.

If APPEND is non-nil, don't erase previous debugging output.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
;;;###autoload
(defun ispell-buffer-with-debug (&optional append)
  "`ispell-buffer' with some output sent to `ispell-debug-buffer'.
If APPEND is non-nil, don't erase previous debugging output."
  (interactive)
  (let ((ispell-debug-buffer (ispell-create-debug-buffer append)))
    (ispell-buffer)))