Unquote an object, if quoted; otherwise, leave unchanged.
(maybe-unquote x) → *
Function:
(defun maybe-unquote (x) (declare (xargs :guard t)) (let ((__function__ 'maybe-unquote)) (declare (ignorable __function__)) (case-match x (('quote y) y) (& x))))