Mattias Engdegård
bdea1883cc
Fix pcase 'rx' pattern match-data bug
...
The pcase 'rx' pattern would in some cases allow the match data to be
clobbered before it is read. For example:
(pcase "PQR"
((and (rx (let a nonl)) (rx ?z)) (list 'one a))
((rx (let b ?Q)) (list 'two b)))
The above returned (two "P") instead of the correct (two "Q").
This occurred because the calls to string-match and match-string were
presented as separate patterns to pcase, which would interleave them
with other patterns.
As a remedy, combine string matching and match-data extraction into a
single pcase pattern. This introduces a slight inefficiency for two
or more submatches as they are grouped into a list structure which
then has to be destructured.
Found by Stefan Monnier. See discussion at
https://lists.gnu.org/archive/html/emacs-devel/2021-02/msg02010.html
* lisp/emacs-lisp/rx.el (rx--reduce-right): New helper.
(rx [pcase macro]): Combine string-match and match-string calls into a
single pcase pattern.
* test/lisp/emacs-lisp/rx-tests.el (rx-pcase): Add test cases.
2021-02-28 13:06:24 +01:00
..
2021-02-24 17:53:53 +01:00
2021-02-18 16:50:55 +01:00
2021-02-27 20:04:41 +01:00
2021-02-28 13:06:24 +01:00
2021-02-22 11:54:17 -05:00
2021-02-27 05:43:06 +01:00
2021-02-12 16:08:01 -05:00
2021-02-27 20:04:41 +01:00
2021-02-17 00:43:52 +01:00
2021-02-27 20:30:21 -05:00
2021-02-02 09:57:07 +01:00
2021-02-24 20:31:31 +01:00
2021-02-10 18:44:43 +01:00
2021-02-22 11:54:17 -05:00
2021-02-27 20:04:41 +01:00
2021-02-26 15:52:26 +01:00
2021-02-24 23:08:47 -05:00
2021-02-27 20:04:41 +01:00
2021-02-28 00:13:24 +01:00
2021-02-27 20:22:43 +01:00
2021-01-31 20:08:25 +01:00
2021-02-28 01:51:31 +01:00
2021-02-19 17:32:59 -05:00
2021-02-27 03:14:04 +01:00
2021-01-31 20:08:25 +01:00
2021-02-05 01:15:02 +01:00
2021-02-01 12:29:10 +01:00
2021-02-27 18:23:12 +01:00
2021-02-22 16:47:38 +01:00
2021-01-01 01:13:56 -08:00
2021-01-03 20:16:40 -05:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-06 11:50:55 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-28 15:09:18 +01:00
2021-02-08 09:10:57 +01:00
2021-02-18 16:50:55 +01:00
2021-02-17 20:04:42 +02:00
2021-02-15 00:51:36 +01:00
2021-01-01 01:13:56 -08:00
2021-02-27 20:17:03 +01:00
2021-01-01 01:13:56 -08:00
2021-02-19 09:36:11 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-05 01:29:20 +01:00
2021-02-22 15:47:30 +01:00
2021-02-02 09:57:07 +01:00
2021-01-04 20:57:42 -05:00
2021-02-09 08:20:08 +01:00
2021-02-09 08:20:08 +01:00
2021-01-11 15:07:01 +01:00
2021-02-25 20:45:40 +02:00
2021-01-01 01:13:56 -08:00
2021-02-02 14:39:28 -05:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-02 09:57:07 +01:00
2021-02-02 14:39:28 -05:00
2021-02-27 20:04:41 +01:00
2021-02-22 22:39:27 +01:00
2021-01-01 01:13:56 -08:00
2021-01-04 20:57:42 -05:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-04 20:57:42 -05:00
2021-01-01 01:13:56 -08:00
2021-01-04 20:57:42 -05:00
2021-02-04 05:28:00 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-02 09:57:07 +01:00
2021-01-01 01:13:56 -08:00
2021-01-04 20:57:42 -05:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:28:16 -08:00
2021-02-25 12:56:12 +01:00
2021-01-01 01:13:56 -08:00
2021-02-08 00:25:16 +01:00
2021-02-02 09:57:07 +01:00
2021-01-28 18:43:15 +01:00
2021-02-06 08:10:38 -08:00
2021-02-10 20:37:14 +01:00
2021-01-26 10:36:52 +01:00
2021-02-02 09:57:07 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-02 09:57:07 +01:00
2021-02-27 16:19:37 +02:00
2021-02-27 20:04:41 +01:00
2021-01-29 06:19:06 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-20 07:55:04 +01:00
2021-01-29 06:19:06 +01:00
2021-02-02 09:57:07 +01:00
2021-02-27 20:04:41 +01:00
2021-01-31 20:08:25 +01:00
2021-01-31 20:08:25 +01:00
2021-01-01 01:13:56 -08:00
2021-01-04 20:57:42 -05:00
2021-02-02 09:57:07 +01:00
2021-02-06 08:10:38 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-09 16:47:25 +01:00
2021-01-01 01:13:56 -08:00
2021-02-24 17:58:38 +01:00
2021-01-01 01:13:56 -08:00
2021-02-26 15:52:26 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-02 09:57:07 +01:00
2021-01-01 01:13:56 -08:00
2021-02-01 12:29:10 +01:00
2021-02-02 09:57:07 +01:00
2021-01-01 01:13:56 -08:00
2021-01-23 21:35:00 +02:00
2021-01-01 01:13:56 -08:00
2021-02-04 12:32:08 +01:00
2021-01-01 01:13:56 -08:00
2021-02-05 01:33:25 +01:00
2021-01-01 01:13:56 -08:00
2021-02-02 09:57:07 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-19 08:36:56 -08:00
2021-01-20 21:19:23 +02:00
2021-02-10 14:42:51 +01:00
2021-02-08 09:18:41 -05:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-16 14:21:52 +01:00
2021-01-01 01:13:56 -08:00
2021-02-28 00:07:32 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-04 20:57:42 -05:00
2021-02-02 09:57:07 +01:00
2021-02-21 12:53:45 +00:00
2021-02-08 09:10:57 +01:00
2021-01-01 01:13:56 -08:00
2021-01-29 08:01:12 +01:00
2021-02-01 06:28:21 -08:00
2021-02-02 09:57:07 +01:00
2021-01-01 01:13:56 -08:00
2021-02-28 00:07:32 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-21 20:09:10 +01:00
2021-01-01 01:13:56 -08:00
2021-01-07 19:56:59 +02:00
2021-01-01 01:13:56 -08:00
2021-02-09 08:20:08 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-11 21:37:45 +00:00
2021-02-23 21:05:30 +02:00
2021-01-01 01:13:56 -08:00
2021-02-04 05:28:00 +01:00
2021-02-04 05:28:00 +01:00
2021-01-15 13:50:07 +02:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-28 09:57:48 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-12 16:08:01 -05:00
2021-02-12 16:08:01 -05:00
2021-01-01 01:13:56 -08:00
2021-02-12 16:08:01 -05:00
2021-02-12 16:08:01 -05:00
2021-02-09 09:20:11 +01:00
2021-01-14 07:50:28 -08:00
2021-02-19 09:36:11 +01:00
2021-02-27 20:04:41 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:28:16 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-11 20:10:31 +01:00
2021-02-27 20:04:41 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-09 13:27:20 -05:00
2021-02-17 20:04:42 +02:00
2021-02-07 16:51:07 +01:00
2021-01-01 01:13:56 -08:00
2021-02-02 09:57:07 +01:00
2021-01-04 20:57:42 -05:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-02 09:57:07 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-04 20:57:42 -05:00
2021-02-02 09:57:07 +01:00
2021-01-01 01:13:56 -08:00
2021-02-02 09:57:07 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-14 12:58:20 +01:00
2021-02-27 16:19:37 +02:00
2021-02-12 19:28:25 -05:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-27 20:04:41 +01:00
2021-02-02 14:39:28 -05:00
2021-01-15 13:50:07 +02:00
2021-02-27 22:00:51 +02:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-27 22:09:33 +02:00
2021-02-23 21:01:31 +02:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-23 03:51:12 +01:00
2021-01-01 01:13:56 -08:00
2021-02-05 10:13:23 +01:00
2021-01-23 20:40:07 +01:00
2021-01-01 01:13:56 -08:00
2021-02-16 12:11:55 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-28 21:27:26 +02:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-02 09:57:07 +01:00
2021-01-21 18:10:21 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-04 05:28:00 +01:00
2021-01-19 12:53:42 -05:00
2021-02-02 09:57:07 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-02-19 08:36:55 -08:00
2021-01-01 01:13:56 -08:00
2021-02-23 03:51:12 +01:00
2021-01-28 08:40:15 +01:00
2021-02-26 15:52:26 +01:00
2021-02-02 09:57:07 +01:00
2021-01-04 20:57:42 -05:00
2021-01-01 01:13:56 -08:00
2021-02-17 20:04:42 +02:00
2021-01-01 01:13:56 -08:00
2021-02-21 20:09:10 +01:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00
2021-01-01 01:13:56 -08:00