aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorMattias EngdegÄrd2019-02-10 10:39:00 +0100
committerMattias EngdegÄrd2019-02-10 23:36:42 +0100
commitc8c6ad2429db961fb9410b25fec44b45da96efa1 (patch)
tree00c681e20008d527ed8cb585540ec3ac09ecb8b8 /test/src
parent459869a528ff02787255391ab90f68195c27b807 (diff)
downloademacs-c8c6ad2429db961fb9410b25fec44b45da96efa1.tar.gz
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 'test/src')
-rw-r--r--test/src/regex-emacs-tests.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/src/regex-emacs-tests.el b/test/src/regex-emacs-tests.el
index e84af6b131b..9a403165734 100644
--- a/test/src/regex-emacs-tests.el
+++ b/test/src/regex-emacs-tests.el
@@ -555,11 +555,11 @@ differences in behavior.")
555 555
556(defconst regex-tests-PTESTS-whitelist 556(defconst regex-tests-PTESTS-whitelist
557 [ 557 [
558 ;; emacs doesn't barf on weird ranges such as [b-a], but simply 558 ;; emacs doesn't see DEL (0x7f) as a [:cntrl:] character
559 ;; fails to match
560 138 559 138
561 560
562 ;; emacs doesn't see DEL (0x78) as a [:cntrl:] character 561 ;; emacs doesn't barf on weird ranges such as [b-a], but simply
562 ;; fails to match
563 168 563 168
564 ] 564 ]
565 "Line numbers in the PTESTS test that should be skipped. These 565 "Line numbers in the PTESTS test that should be skipped. These