Function: mpc-constraints-push

mpc-constraints-push is an interactive and byte-compiled function defined in mpc.el.gz.

Signature

(mpc-constraints-push &optional NOERROR)

Documentation

Push the current selection on the ring for later.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mpc.el.gz
(defun mpc-constraints-push (&optional noerror)
  "Push the current selection on the ring for later."
  (interactive)
  (let ((constraints (mpc-constraints-get-current)))
    (if (null constraints)
        (unless noerror (error "No selection to push"))
      (mpc-ring-push mpc-constraints-ring constraints))))