Function: newsticker--debug-msg

newsticker--debug-msg is a byte-compiled function defined in newst-backend.el.gz.

Signature

(newsticker--debug-msg STRING &rest ARGS)

Documentation

Print newsticker debug messages.

This function calls message with arguments STRING and ARGS, if newsticker-debug is non-nil.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
(defun newsticker--debug-msg (string &rest args)
  "Print newsticker debug messages.
This function calls `message' with arguments STRING and ARGS, if
`newsticker-debug' is non-nil."
  (and newsticker-debug
       ;;(not (active-minibuffer-window))
       ;;(not (current-message))
       (apply #'message string args)))