diff options
author | Richard Stallman <rms@gnu.org> | 2025-02-17 16:56:22 -0500 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 2025-02-17 16:56:22 -0500 |
commit | abd861ca2694898b347b94251710da38c687dd68 (patch) | |
tree | 1e8d0a2680b7ce953d10fb3c91bca40658694e95 /lisp/emacs-lisp/rx.el | |
parent | f3ef16f86ffbb0ab5b76fa11e85eda5b1eff4b4b (diff) | |
parent | 8a7c1a31ac0a61384661878e9f7f7e77ada34ade (diff) | |
download | emacs-abd861ca2694898b347b94251710da38c687dd68.tar.gz emacs-abd861ca2694898b347b94251710da38c687dd68.tar.bz2 emacs-abd861ca2694898b347b94251710da38c687dd68.zip |
merging with my changes in cond-star.el.
Diffstat (limited to 'lisp/emacs-lisp/rx.el')
-rw-r--r-- | lisp/emacs-lisp/rx.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el index 8fbe35220f1..c512d42cd15 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el @@ -1072,7 +1072,7 @@ Return (REGEXP . PRECEDENCE)." "Expand `eval' arguments. Return a new rx form." (unless (and body (null (cdr body))) (error "rx `eval' form takes exactly one argument")) - (eval (car body))) + (eval (car body) lexical-binding)) (defun rx--translate-eval (body) "Translate the `eval' form. Return (REGEXP . PRECEDENCE)." |