diff options
Diffstat (limited to 'test/lisp/emacs-lisp/rx-tests.el')
-rw-r--r-- | test/lisp/emacs-lisp/rx-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/rx-tests.el b/test/lisp/emacs-lisp/rx-tests.el index 26e39f8c8ed..317dae2990b 100644 --- a/test/lisp/emacs-lisp/rx-tests.el +++ b/test/lisp/emacs-lisp/rx-tests.el @@ -79,7 +79,7 @@ ;; Range of raw characters, multibyte. (should (equal (rx (any "Å\211\326-\377\177")) "[\177Å\211\326-\377]")) - ;; Split range; \177-\377ÿ should not be optimised to \177-\377. + ;; Split range; \177-\377ÿ should not be optimized to \177-\377. (should (equal (rx (any "\177-\377" ?ÿ)) "[\177ÿ\200-\377]"))) |