emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp/international ucs-normalize.el


From: Kenichi Handa
Subject: [Emacs-diffs] emacs/lisp/international ucs-normalize.el
Date: Fri, 16 Oct 2009 00:47:27 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Kenichi Handa <handa>   09/10/16 00:47:27

Modified files:
        lisp/international: ucs-normalize.el 

Log message:
        (ucs-normalize-version): Changed to 1.2.
        (check-range): Adjusted for Unicode 5.2.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/international/ucs-normalize.el?cvsroot=emacs&r1=1.7&r2=1.8

Patches:
Index: ucs-normalize.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/international/ucs-normalize.el,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- ucs-normalize.el    28 Aug 2009 18:22:34 -0000      1.7
+++ ucs-normalize.el    16 Oct 2009 00:47:27 -0000      1.8
@@ -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/
@@ -108,7 +108,7 @@
 
 ;;; Code:
 
-(defconst ucs-normalize-version "1.1")
+(defconst ucs-normalize-version "1.2")
 
 (eval-when-compile (require 'cl))
 
@@ -130,11 +130,11 @@
       #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)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]