Function: rx--expand-def
rx--expand-def is a byte-compiled function defined in rx.el.gz.
Signature
(rx--expand-def FORM)
Documentation
FORM expanded (once) if a user-defined construct; otherwise nil.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/rx.el.gz
(defun rx--expand-def (form)
"FORM expanded (once) if a user-defined construct; otherwise nil."
(cond ((symbolp form)
(let ((def (rx--lookup-def form)))
(and def
(if (cdr def)
(error "Not an `rx' symbol definition: %s" form)
(car def)))))
((and (consp form) (symbolp (car form)))
(let* ((op (car form))
(def (rx--lookup-def op)))
(and def
(if (cdr def)
(rx--expand-template
op (cdr form) (nth 0 def) (nth 1 def))
(error "Not an `rx' form definition: %s" op)))))))