Mercurial > emacs
changeset 6492:8372dce85f8a
(make_event_array): Use assignment, not initialization.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 23 Mar 1994 22:25:25 +0000 |
parents | 21d52b9fd783 |
children | 33a461f14903 |
files | src/alloc.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/alloc.c Wed Mar 23 22:11:16 1994 +0000 +++ b/src/alloc.c Wed Mar 23 22:25:25 1994 +0000 @@ -982,8 +982,9 @@ /* Since the loop exited, we know that all the things in it are characters, so we can make a string. */ { - Lisp_Object result = Fmake_string (nargs, make_number (0)); + Lisp_Object result; + result = Fmake_string (nargs, make_number (0)); for (i = 0; i < nargs; i++) { XSTRING (result)->data[i] = XINT (args[i]);