Match definition macro that provides a common lexical environment for matchers.
(defmacro defmatch (name &rest body) "Match definition macro that provides a common lexical environment for matchers." `(defun ,name (c) ,@body))