diff options
author | Glenn Morris <rgm@gnu.org> | 2017-12-20 16:23:11 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2017-12-20 16:23:11 -0500 |
commit | 471b6c163f16fbc0b7c58c223bdb7f18ac7656e7 (patch) | |
tree | 942b8f3c085ba83114651433bebc3d58c559010a /test/src/regex-tests.el | |
parent | 7af7f5e15589407e1e78d0595fa93b20aa7dbb5a (diff) | |
download | emacs-471b6c163f16fbc0b7c58c223bdb7f18ac7656e7.tar.gz emacs-471b6c163f16fbc0b7c58c223bdb7f18ac7656e7.tar.bz2 emacs-471b6c163f16fbc0b7c58c223bdb7f18ac7656e7.zip |
; Replace non-ascii quote characters in doc strings etc
Diffstat (limited to 'test/src/regex-tests.el')
-rw-r--r-- | test/src/regex-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/regex-tests.el b/test/src/regex-tests.el index b1f1ea71cef..220d42c8d2e 100644 --- a/test/src/regex-tests.el +++ b/test/src/regex-tests.el @@ -27,13 +27,13 @@ "Path to regex-resources directory next to the \"regex-tests.el\" file.") (ert-deftest regex-word-cc-fallback-test () - "Test that ‘[[:cc:]]*x’ matches ‘x’ (bug#24020). + "Test that \"[[:cc:]]*x\" matches \"x\" (bug#24020). Test that a regex of the form \"[[:cc:]]*x\" where CC is a character class which matches a multibyte character X, matches string \"x\". -For example, ‘[[:word:]]*\u2620’ regex (note: \u2620 is a word +For example, \"[[:word:]]*\u2620\" regex (note: \u2620 is a word character) must match a string \"\u2420\"." (dolist (class '("[[:word:]]" "\\sw")) (dolist (repeat '("*" "+")) |