diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2019-02-10 10:39:00 +0100 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2019-02-10 23:36:42 +0100 |
commit | c8c6ad2429db961fb9410b25fec44b45da96efa1 (patch) | |
tree | 00c681e20008d527ed8cb585540ec3ac09ecb8b8 /lisp/emacs-lisp | |
parent | 459869a528ff02787255391ab90f68195c27b807 (diff) | |
download | emacs-c8c6ad2429db961fb9410b25fec44b45da96efa1.tar.gz emacs-c8c6ad2429db961fb9410b25fec44b45da96efa1.tar.bz2 emacs-c8c6ad2429db961fb9410b25fec44b45da96efa1.zip |
Document that [:cntrl:] does not match DEL (Bug#34391)
* doc/lispref/searching.texi (Character Classes):
* lisp/emacs-lisp/rx.el (rx):
Document that [:cntrl:] excludes DEL.
* test/src/regex-emacs-tests.el (regex-tests-PTESTS-whitelist):
Swap misplaced comments and fix wrong code for DEL.
Diffstat (limited to 'lisp/emacs-lisp')
-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 8b4551d0d36..3fa0204a1a2 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el @@ -964,7 +964,7 @@ CHAR matches 0 through 9. `control', `cntrl' - matches ASCII control characters. + matches any character whose code is in the range 0-31. `hex-digit', `hex', `xdigit' matches 0 through 9, a through f and A through F. |