Function: rx--translate-char-alt
rx--translate-char-alt is a byte-compiled function defined in
rx.el.gz.
Signature
(rx--translate-char-alt NEGATED BODY)
Documentation
Translate a (rx--char-alt ...) construct. Return (REGEXP . PRECEDENCE).
If NEGATED, negate the sense.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/rx.el.gz
(defun rx--translate-char-alt (negated body)
"Translate a (rx--char-alt ...) construct. Return (REGEXP . PRECEDENCE).
If NEGATED, negate the sense."
(rx--generate-alt negated (car body) (cdr body)))