1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

(make_event_array): Use assignment, not initialization.

This commit is contained in:
Karl Heuer 1994-03-23 22:25:25 +00:00
parent 7ed39e9d2b
commit c13ccad2a6

View File

@ -982,8 +982,9 @@ make_event_array (nargs, args)
/* 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]);