diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-02-14 23:22:10 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-02-14 23:22:10 +0100 |
commit | f1bc8e480cc9d4a81826b344cac06d0bad88e21e (patch) | |
tree | 6d66f34a81e5ea992838b4c56b03a79787ecd5db /lisp/emacs-lisp/rx.el | |
parent | d71801ea34b0607edd02d65e2b3150ecd7c2e8fc (diff) | |
parent | 333cc6a037e3b3300ba69ea361de1f8233c50b48 (diff) | |
download | emacs-f1bc8e480cc9d4a81826b344cac06d0bad88e21e.tar.gz emacs-f1bc8e480cc9d4a81826b344cac06d0bad88e21e.tar.bz2 emacs-f1bc8e480cc9d4a81826b344cac06d0bad88e21e.zip |
Merge remote-tracking branch 'savannah/master' into HEAD
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 03af053c91e..b4cab5715da 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el @@ -290,7 +290,7 @@ Return (REGEXP . PRECEDENCE)." ((null (cdr body)) ; Single item. (rx--translate (car body))) ((rx--every #'stringp body) ; All strings. - (cons (list (regexp-opt body nil t)) + (cons (list (regexp-opt body nil)) t)) ((rx--every #'rx--charset-p body) ; All charsets. (rx--translate-union nil body)) |