Function: mpc--debug
mpc--debug is a byte-compiled function defined in mpc.el.gz.
Signature
(mpc--debug FORMAT &rest ARGS)
Source Code
;; Defined in /usr/src/emacs/lisp/mpc.el.gz
(defun mpc--debug (format &rest args)
(if (get-buffer "*MPC-debug*")
(with-current-buffer "*MPC-debug*"
(goto-char (point-max))
(insert-before-markers ;So it scrolls.
(string-replace "\n" "\n "
(apply #'format-message format args))
"\n"))))