Mercurial > emacs
changeset 26837:bb9ada50010f
(Fmake_string): Adjusted for the change of CHAR_STRING.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 15 Dec 1999 00:01:44 +0000 |
parents | 7c90254477b0 |
children | 27b6d3367b47 |
files | src/alloc.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/alloc.c Wed Dec 15 00:01:14 1999 +0000 +++ b/src/alloc.c Wed Dec 15 00:01:44 1999 +0000 @@ -1257,8 +1257,8 @@ } 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);