From 07ac80cc4916f3137b5c2d466e914a92175fe018 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Sun, 19 Sep 2010 03:31:12 +0000 Subject: [PATCH] Oops. Fix long standing bug where the trie for Unicode 1.0 names was given the wrong split value. --- tools/build-unidata.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/build-unidata.lisp b/tools/build-unidata.lisp index 60324f930..995b00e68 100644 --- a/tools/build-unidata.lisp +++ b/tools/build-unidata.lisp @@ -4,7 +4,7 @@ ;;; This code was written by Paul Foley and has been placed in the public ;;; domain. ;;; -(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/build-unidata.lisp,v 1.7 2010/09/18 20:58:28 rtoy Exp $") +(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/build-unidata.lisp,v 1.8 2010/09/19 03:31:12 rtoy Rel $") ;;; ;;; ********************************************************************** ;;; @@ -973,7 +973,7 @@ (multiple-value-bind (hvec mvec lvec) (pack ucd range (lambda (x) (pack-name x t dict)) 0 32 #x54) (setf (unidata-name1 *unicode-data*) - (make-ntrie32 :split #x72 :hvec hvec :mvec mvec :lvec lvec)))) + (make-ntrie32 :split #x54 :hvec hvec :mvec mvec :lvec lvec)))) (format t "~&Building general category table~%") (multiple-value-bind (hvec mvec lvec) -- GitLab