aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorEli Zaretskii2025-09-13 17:52:30 +0300
committerEli Zaretskii2025-09-13 17:52:30 +0300
commitfd5d35407abb784344c9bf4e0ae731c72df79d57 (patch)
treeb0a62577488c069c0222c5b312cfeebb8c5d8a89 /test
parent125b3588c9a69625aa72cb3a86c332a804d02458 (diff)
downloademacs-fd5d35407abb784344c9bf4e0ae731c72df79d57.tar.gz
emacs-fd5d35407abb784344c9bf4e0ae731c72df79d57.zip
Fix Unicode-related tests
* test/lisp/international/mule-tests.el (mule-cmds-tests--ucs-names-missing-names): Update no-name regions of codepoints to Unicode 17.0. * lisp/international/mule-cmds.el (ucs-names): Fix comments. * admin/notes/unicode: Update instructions.
Diffstat (limited to 'test')
-rw-r--r--test/lisp/international/mule-tests.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lisp/international/mule-tests.el b/test/lisp/international/mule-tests.el
index d1434d5a873..d45c89b8a94 100644
--- a/test/lisp/international/mule-tests.el
+++ b/test/lisp/international/mule-tests.el
@@ -69,7 +69,8 @@
69 (dotimes (u (1+ (max-char 'ucs))) 69 (dotimes (u (1+ (max-char 'ucs)))
70 (when-let* ((name (get-char-code-property u 'name))) 70 (when-let* ((name (get-char-code-property u 'name)))
71 (when (and (not (<= #xD800 u #xDFFF)) 71 (when (and (not (<= #xD800 u #xDFFF))
72 (not (<= #x18800 u #x18AFF)) 72 (not (<= #x18800 u #x18D1E))
73 (not (<= #x18D80 u #x18DF2))
73 (not (char-from-name name))) 74 (not (char-from-name name)))
74 (push (format "%X" u) code-points)))) 75 (push (format "%X" u) code-points))))
75 (setq code-points (nreverse code-points)) 76 (setq code-points (nreverse code-points))