aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorKenichi Handa2002-07-26 04:05:01 +0000
committerKenichi Handa2002-07-26 04:05:01 +0000
commit830ff83b5059107707e3031b73282c2da3319320 (patch)
tree7b31664460c1bc35271b4671cb540dcad961102a /src/alloc.c
parent6fd49f24bfa42a22f557332cb7dd2e0c611bbf18 (diff)
downloademacs-830ff83b5059107707e3031b73282c2da3319320.tar.gz
emacs-830ff83b5059107707e3031b73282c2da3319320.zip
(Fmake_string): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
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. */)
1672 CHECK_NUMBER (init); 1672 CHECK_NUMBER (init);
1673 1673
1674 c = XINT (init); 1674 c = XINT (init);
1675 if (SINGLE_BYTE_CHAR_P (c)) 1675 if (ASCII_CHAR_P (c))
1676 { 1676 {
1677 nbytes = XINT (length); 1677 nbytes = XINT (length);
1678 val = make_uninit_string (nbytes); 1678 val = make_uninit_string (nbytes);