]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmake_string): Adjusted for the change of CHAR_STRING.
authorKenichi Handa <handa@m17n.org>
Wed, 15 Dec 1999 00:01:44 +0000 (00:01 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 15 Dec 1999 00:01:44 +0000 (00:01 +0000)
src/alloc.c

index 546bdb15b455c6d84a80f99ac0b1daf6b2eb0125..4c482c261dd4b1a04fb6dc095b1c09dd7338595a 100644 (file)
@@ -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);