Function: ispell-print-if-debug

ispell-print-if-debug is a byte-compiled function defined in ispell.el.gz.

Signature

(ispell-print-if-debug FORMAT &rest ARGS)

Documentation

Print message using FORMAT and ARGS to ispell-debug-buffer if enabled.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defsubst ispell-print-if-debug (format &rest args)
  "Print message using FORMAT and ARGS to `ispell-debug-buffer' if enabled."
  (if (boundp 'ispell-debug-buffer)
      (with-current-buffer ispell-debug-buffer
	(goto-char (point-max))
	(insert (apply #'format format args)))))