From 9eadd3720c51ecaf6ecd93f27559cf3be14bec92 Mon Sep 17 00:00:00 2001 From: "Taylor R. Campbell" Date: Fri, 29 Dec 2006 04:32:43 +0000 Subject: [PATCH] Fix case conversion tables for high ISO-8859-1 characters so that they are not reversed. --- v7/src/runtime/char.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v7/src/runtime/char.scm b/v7/src/runtime/char.scm index c61fb8f4e..ea656bfb0 100644 --- a/v7/src/runtime/char.scm +++ b/v7/src/runtime/char.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: char.scm,v 14.27 2006/10/24 04:08:46 cph Exp $ +$Id: char.scm,v 14.28 2006/12/29 04:32:43 riastradh Exp $ Copyright 1986,1987,1988,1991,1995,1997 Massachusetts Institute of Technology Copyright 1998,2001,2003,2004,2005,2006 Massachusetts Institute of Technology @@ -202,8 +202,8 @@ USA. (vector-8b-set! downcase-table i j) (vector-8b-set! upcase-table j i))))) (case-range 65 90 97) - (case-range 224 246 192) - (case-range 248 254 216))) + (case-range 192 214 224) + (case-range 216 222 248))) (define 0-code) (define upper-a-code) -- 2.25.1