aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorKenichi Handa2002-10-15 01:17:51 +0000
committerKenichi Handa2002-10-15 01:17:51 +0000
commit93ba97b977f0b5e35c26fe81d0f1b070e773986e (patch)
tree29326e1e6f2e7389379e4f39924eae2e58ff1a42 /src/data.c
parentda4109a9ecbaed9b5835004a03d08278e3743be2 (diff)
downloademacs-93ba97b977f0b5e35c26fe81d0f1b070e773986e.tar.gz
emacs-93ba97b977f0b5e35c26fe81d0f1b070e773986e.zip
(Faset): Check NEWELT by ASCII_CHAR_P, not by
SINGLE_BYTE_CHAR_P.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c2
1 files changed, 1 insertions, 1 deletions
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. */)
1955 args_out_of_range (array, idx); 1955 args_out_of_range (array, idx);
1956 CHECK_NUMBER (newelt); 1956 CHECK_NUMBER (newelt);
1957 1957
1958 if (XINT (newelt) < 0 || SINGLE_BYTE_CHAR_P (XINT (newelt))) 1958 if (XINT (newelt) < 0 || ASCII_CHAR_P (XINT (newelt)))
1959 XSTRING (array)->data[idxval] = XINT (newelt); 1959 XSTRING (array)->data[idxval] = XINT (newelt);
1960 else 1960 else
1961 { 1961 {