changeset 88898:ac49af641799

(Fmake_string): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
author Kenichi Handa <handa@m17n.org>
date Fri, 26 Jul 2002 04:05:01 +0000
parents be43e70da003
children 9bc86c0d4a67
files src/alloc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/alloc.c	Fri Jul 26 04:04:45 2002 +0000
+++ b/src/alloc.c	Fri Jul 26 04:05:01 2002 +0000
@@ -1672,7 +1672,7 @@
   CHECK_NUMBER (init);
 
   c = XINT (init);
-  if (SINGLE_BYTE_CHAR_P (c))
+  if (ASCII_CHAR_P (c))
     {
       nbytes = XINT (length);
       val = make_uninit_string (nbytes);