Function: feedmail-say-debug

feedmail-say-debug is a byte-compiled function defined in feedmail.el.gz.

Signature

(feedmail-say-debug FORMAT &optional A1 A2 A3 A4 A5 A6 A7 A8 A9)

Documentation

Internal; emits debug messages in standard format.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defun feedmail-say-debug (format &optional a1 a2 a3 a4 a5 a6 a7 a8 a9)
  "Internal; emits debug messages in standard format."
  (when feedmail-debug
    (funcall 'message (concat "FQM DB: " format) a1 a2 a3 a4 a5 a6 a7 a8 a9)
    (and feedmail-debug-sit-for (not (= 0 feedmail-debug-sit-for))
	 (sit-for feedmail-debug-sit-for))))