From: Kenichi Handa Date: Fri, 26 Jul 2002 04:05:01 +0000 (+0000) Subject: (Fmake_string): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~531 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=830ff83b5059107707e3031b73282c2da3319320;p=emacs.git (Fmake_string): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P. --- diff --git a/src/alloc.c b/src/alloc.c index de1f11050bc..b1208c359e5 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -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);