Function: mpc-cmd-pause

mpc-cmd-pause is a byte-compiled function defined in mpc.el.gz.

Signature

(mpc-cmd-pause &optional ARG CALLBACK)

Documentation

Pause or resume playback of the queue of songs.

Source Code

;; Defined in /usr/src/emacs/lisp/mpc.el.gz
(defun mpc-cmd-pause (&optional arg callback)
  "Pause or resume playback of the queue of songs."
  (let ((cb callback))
    (mpc-proc-cmd (list "pause" arg)
                  (lambda () (mpc-status-refresh) (if cb (funcall cb))))
    (unless callback (mpc-proc-sync))))