Function: mpc--notifications-format

mpc--notifications-format is a byte-compiled function defined in mpc.el.gz.

Signature

(mpc--notifications-format FORMAT-SPECS)

Documentation

Use FORMAT-SPECS to get string for use in notification.

Source Code

;; Defined in /usr/src/emacs/lisp/mpc.el.gz
(defun mpc--notifications-format (format-specs)
  "Use FORMAT-SPECS to get string for use in notification."
  (with-temp-buffer
    (cl-some
     (lambda (spec)
       (mpc-format spec mpc-status)
       (if (< (point-min) (point-max))
           (buffer-string)))
     format-specs)))