From c13ccad2a69a3691ee29597d1a8fe78160c36afb Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 23 Mar 1994 22:25:25 +0000 Subject: [PATCH] (make_event_array): Use assignment, not initialization. --- src/alloc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/alloc.c b/src/alloc.c index b9299a060c2..d343774e8fd 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -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]);