From: Kenichi Handa Date: Wed, 15 Dec 1999 00:01:44 +0000 (+0000) Subject: (Fmake_string): Adjusted for the change of CHAR_STRING. X-Git-Tag: emacs-pretest-21.0.90~5771 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c80329d154ec98d764262f1dc31188eabbb44a2c;p=emacs.git (Fmake_string): Adjusted for the change of CHAR_STRING. --- diff --git a/src/alloc.c b/src/alloc.c index 546bdb15b45..4c482c261dd 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1257,8 +1257,8 @@ Both LENGTH and INIT must be numbers.") } else { - unsigned char work[4], *str; - int len = CHAR_STRING (c, work, str); + unsigned char str[4]; + int len = CHAR_STRING (c, str); nbytes = len * XINT (length); val = make_uninit_multibyte_string (XINT (length), nbytes);