aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/rx.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el
index c246d0235f6..a0fb15ae39f 100644
--- a/lisp/emacs-lisp/rx.el
+++ b/lisp/emacs-lisp/rx.el
@@ -35,9 +35,8 @@
35;; that the `repeat' form can't have multiple regexp args. 35;; that the `repeat' form can't have multiple regexp args.
36 36
37;; Now alternative forms are provided for a degree of compatibility 37;; Now alternative forms are provided for a degree of compatibility
38;; with Shivers' attempted definitive SRE notation 38;; with Olin Shivers' attempted definitive SRE notation. SRE forms
39;; <URL:http://www.ai.mit.edu/~/shivers/sre.txt>. SRE forms not 39;; not catered for include: dsm, uncase, w/case, w/nocase, ,@<exp>,
40;; catered for include: dsm, uncase, w/case, w/nocase, ,@<exp>,
41;; ,<exp>, (word ...), word+, posix-string, and character class forms. 40;; ,<exp>, (word ...), word+, posix-string, and character class forms.
42;; Some forms are inconsistent with SRE, either for historical reasons 41;; Some forms are inconsistent with SRE, either for historical reasons
43;; or because of the implementation -- simple translation into Emacs 42;; or because of the implementation -- simple translation into Emacs