diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2020-11-09 17:11:05 +0100 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2020-11-09 17:28:37 +0100 |
commit | 575b0681d926463960fc00d1e33decaa71d5c956 (patch) | |
tree | 4b20bdde66789d734928c5dbda08f01c752eb765 /lisp/emacs-lisp/rx.el | |
parent | 52937958064223bec3ad518363d3cc50d995b259 (diff) | |
download | emacs-575b0681d926463960fc00d1e33decaa71d5c956.tar.gz emacs-575b0681d926463960fc00d1e33decaa71d5c956.tar.bz2 emacs-575b0681d926463960fc00d1e33decaa71d5c956.zip |
Fix pcase rx form snag with '?' and '??' (bug#44532)
This is a regression from Emacs 26.
Reported by Phillip Stephani.
* lisp/emacs-lisp/rx.el (rx--pcase-transform): Process ? and ?? correctly.
* test/lisp/emacs-lisp/rx-tests.el (rx-pcase): Add test case.
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 8d8d071031c..76c3ac31b85 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el @@ -1413,7 +1413,7 @@ into a plain rx-expression, collecting names into `rx--pcase-vars'." (mapconcat #'symbol-name rx--pcase-vars " "))) `(backref ,index))) ((and `(,head . ,rest) - (guard (and (symbolp head) + (guard (and (or (symbolp head) (memq head '(?\s ??))) (not (memq head '(literal regexp regex eval)))))) (cons head (mapcar #'rx--pcase-transform rest))) (_ rx))) |