Function: mpc-constraints-pop
mpc-constraints-pop is an interactive and byte-compiled function
defined in mpc.el.gz.
Signature
(mpc-constraints-pop)
Documentation
Recall the most recently pushed selection.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mpc.el.gz
(defun mpc-constraints-pop ()
"Recall the most recently pushed selection."
(interactive)
(let ((constraints (mpc-ring-pop mpc-constraints-ring)))
(if (null constraints)
(error "No selection to return to")
(mpc-constraints-restore constraints))))