Function: rx--control-greedy

rx--control-greedy is a byte-compiled function defined in rx.el.gz.

Signature

(rx--control-greedy GREEDY BODY)

Documentation

Translate the sequence BODY with greediness GREEDY.

Return (REGEXP . PRECEDENCE).

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/rx.el.gz
(defun rx--control-greedy (greedy body)
  "Translate the sequence BODY with greediness GREEDY.
Return (REGEXP . PRECEDENCE)."
  (let ((rx--greedy greedy))
    (rx--translate-seq body)))