Mercurial > emacs
diff src/alloc.c @ 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 | f91d4884806e |
| children | e3daba09b015 |
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]);
