Function: cps--find-special-form-handler
cps--find-special-form-handler is a byte-compiled function defined in
generator.el.gz.
Signature
(cps--find-special-form-handler FORM)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/generator.el.gz
(defun cps--find-special-form-handler (form)
(let* ((handler-name (format "cps--transform-%s" (car-safe form)))
(handler (intern-soft handler-name)))
(and (fboundp handler) handler)))