]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmake_string): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
authorKenichi Handa <handa@m17n.org>
Fri, 26 Jul 2002 04:05:01 +0000 (04:05 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 26 Jul 2002 04:05:01 +0000 (04:05 +0000)
src/alloc.c

index de1f11050bc9ef7b02580aaefae7c16708c157de..b1208c359e5e979382c42cb58c96b565f9629394 100644 (file)
@@ -1672,7 +1672,7 @@ Both LENGTH and INIT must be numbers.  */)
   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);