From 224fb6e1ed31c8fa7948f5fd030eb76dece62ea9 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Tue, 6 Jul 2010 04:46:35 +0000 Subject: [PATCH] Fix the check for overlong sequences. The constants appear to be wrong. Some overlong sequences: c0 af e0 80 af f0 80 80 af e0 9f bf f0 8f bf bf e0 80 80 f0 80 80 80 --- pcl/simple-streams/external-formats/utf-8.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pcl/simple-streams/external-formats/utf-8.lisp b/pcl/simple-streams/external-formats/utf-8.lisp index 013c337d5..da348199c 100644 --- a/pcl/simple-streams/external-formats/utf-8.lisp +++ b/pcl/simple-streams/external-formats/utf-8.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/pcl/simple-streams/external-formats/utf-8.lisp,v 1.10 2010/07/05 04:12:47 rtoy Exp $") +(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-8.lisp,v 1.11 2010/07/06 04:46:35 rtoy Exp $") (in-package "STREAM") @@ -48,8 +48,8 @@ ;; sequence) and any surrogate values and any code ;; outside the 21-bit Unicode range. (if (or (>= ,n lisp:codepoint-limit) - (<= ,n (the (member 127 1023 32767) - (svref #(127 1023 32767) (1- ,i)))) ; overlong + (<= ,n (the (member 127 2047 65535) + (svref #(127 2047 65535) (1- ,i)))) ; overlong (lisp::surrogatep ,n)) ; surrogate (progn (,unput ,i) -- GitLab