aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/rx.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el
index 92eea6d00a3..938564b5dde 100644
--- a/lisp/emacs-lisp/rx.el
+++ b/lisp/emacs-lisp/rx.el
@@ -694,7 +694,7 @@ CHAR
694 still match. A non-greedy regexp matches as little as possible. 694 still match. A non-greedy regexp matches as little as possible.
695 695
696`(maximal-match SEXP)' 696`(maximal-match SEXP)'
697 produce a greedy regexp for SEXP. This is the default. 697 produce a greedy regexp for SEXP. This is the default.
698 698
699`(zero-or-more SEXP)' 699`(zero-or-more SEXP)'
700 matches zero or more occurrences of what SEXP matches. 700 matches zero or more occurrences of what SEXP matches.
@@ -739,7 +739,7 @@ CHAR
739 matches N to M occurrences of what SEXP matches. 739 matches N to M occurrences of what SEXP matches.
740 740
741`(eval FORM)' 741`(eval FORM)'
742 evaluate FORM and insert result. If result is a string, 742 evaluate FORM and insert result. If result is a string,
743 `regexp-quote' it. 743 `regexp-quote' it.
744 744
745`(regexp REGEXP)' 745`(regexp REGEXP)'