From: Karl Heuer Date: Wed, 23 Mar 1994 22:25:25 +0000 (+0000) Subject: (make_event_array): Use assignment, not initialization. X-Git-Tag: emacs-19.34~9360 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c13ccad2a69a3691ee29597d1a8fe78160c36afb;p=emacs.git (make_event_array): Use assignment, not initialization. --- 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]);