diff options
author | Thien-Thi Nguyen <ttn@gnu.org> | 2018-05-21 17:16:31 +0200 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnu.org> | 2018-05-27 10:36:35 +0200 |
commit | 4d7e54acff0869d42bfb5b95014f7e6b988666d5 (patch) | |
tree | 16bbdbb623f314dd0cf595280147e2885f67c364 /lisp/emacs-lisp/rx.el | |
parent | 7e8227ed68357dd05cb7a4ce931e5cafe6c9dd5a (diff) | |
download | emacs-4d7e54acff0869d42bfb5b95014f7e6b988666d5.tar.gz |
Use EXPVAL in docstrings of patterns defined using pcase-defmacro
Suggested by Drew Adams (Bug#31311).
* lisp/emacs-lisp/cl-macs.el (cl-struct): ...here.
* lisp/emacs-lisp/eieio.el (eieio): Likewise.
* lisp/emacs-lisp/radix-tree.el (radix-tree-leaf): Likewise.
* lisp/emacs-lisp/rx.el (rx): Likewise.
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 c4f6d4f70ea..302ee23db6a 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el @@ -1177,7 +1177,7 @@ enclosed in `(and ...)'. (pcase-defmacro rx (&rest regexps) "Build a `pcase' pattern matching `rx' regexps. The REGEXPS are interpreted as by `rx'. The pattern matches if -the regular expression so constructed matches the object, as if +the regular expression so constructed matches EXPVAL, as if by `string-match'. In addition to the usual `rx' constructs, REGEXPS can contain the |