]> code.delx.au - gnu-emacs/commitdiff
(ucs-normalize-version): Changed to 1.2.
authorKenichi Handa <handa@m17n.org>
Fri, 16 Oct 2009 00:48:52 +0000 (00:48 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 16 Oct 2009 00:48:52 +0000 (00:48 +0000)
(check-range): Adjusted for Unicode 5.2.

lisp/ChangeLog
lisp/international/ucs-normalize.el

index eaec532355b3e59398380585c8d433567cf8454f..d42bbfe51797c9301cd1b6eee6de6667a076717b 100644 (file)
@@ -1,3 +1,9 @@
+2009-10-16  Taichi Kawabata  <kawabata.taichi@gmail.com>
+
+       * international/ucs-normalize.el (ucs-normalize-version): Changed
+       to 1.2.
+       (check-range): Adjusted for Unicode 5.2.
+
 2009-10-15  Juri Linkov  <juri@jurta.org>
 
        * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
index 876237300cf9022758bf16fe140c6b869f2a69d8..92671f02d76367223ca4da765fd0bb2636081e87 100644 (file)
@@ -23,7 +23,7 @@
 
 ;;; Commentary:
 ;;
-;; This program has passed the NormalizationTest-5.1.0.txt.
+;; This program has passed the NormalizationTest-5.2.0.txt.
 ;;
 ;; References:
 ;; http://www.unicode.org/reports/tr15/
 
 ;;; Code:
 
-(defconst ucs-normalize-version "1.1")
+(defconst ucs-normalize-version "1.2")
 
 (eval-when-compile (require 'cl))
 
       #x1D1BF #x1D1C0)
    "Composition Exclusion List.
   This list is taken from
-    http://www.unicode.org/Public/UNIDATA/CompositionExclusions-5.1.0.txt")
+    http://www.unicode.org/Public/UNIDATA/5.2/CompositionExclusions.txt")
 
   ;; Unicode ranges that decompositions & combinings are defined.
   (defvar check-range nil)
-    (setq check-range '((#x00a0 . #x3400) (#xA600 . #xAC00) (#xF900 . #x10fff) (#x1d000 . #x1dfff) (#x2f800 . #x2faff)))
+    (setq check-range '((#x00a0 . #x3400) (#xA600 . #xAC00) (#xF900 . #x110ff) (#x1d000 . #x1dfff) (#x1f100 . #x1f2ff) (#x2f800 . #x2faff)))
 
   ;; Basic normalization functions
   (defun nfd (char)