aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
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 {