From 93ba97b977f0b5e35c26fe81d0f1b070e773986e Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 15 Oct 2002 01:17:51 +0000 Subject: [PATCH] (Faset): Check NEWELT by ASCII_CHAR_P, not by SINGLE_BYTE_CHAR_P. --- src/data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data.c b/src/data.c index c35efe3067e..2d7ca8e2037 100644 --- a/src/data.c +++ b/src/data.c @@ -1955,7 +1955,7 @@ IDX starts at 0. */) args_out_of_range (array, idx); CHECK_NUMBER (newelt); - if (XINT (newelt) < 0 || SINGLE_BYTE_CHAR_P (XINT (newelt))) + if (XINT (newelt) < 0 || ASCII_CHAR_P (XINT (newelt))) XSTRING (array)->data[idxval] = XINT (newelt); else { -- 2.39.2