diff src/alloc.c @ 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 8e996bb689ca
children 2f877ed80fa6
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);